Category: Pointer

19
May
2017

Pointer More More Clear

/* Zaki Live pointer important topic */ #include<stdio.h> int main() { int *p,*q,**k; int x=100; p=&x; //p…

03
May
2017

Pointer Clear

code: #include<stdio.h> int main() { int* pc; int c; c=22; printf(“____\n”); printf(“Address of c:%u\n”,&c); printf(“Value of C:%d\n”,c);…

28
Apr
2017

Pointer Good Basic

It will clear the confusion about the pointer when arises. Sum clear: example code: #include<stdio.h> int main()…

14
Mar
2017

Details about Pointer

     

12
Feb
2017

A good example of pointer code at Hacker Rank

A good example of pointer code at Hacker Rank: #include <stdio.h> void update(int *a,int *b) { //…

11
Jun
2015

C++ Pointer

I tried to clear here my logic for pointer basic #include<iostream> using namespace std; int main(){ int…