Category: Pointer
/* Zaki Live pointer important topic */ #include<stdio.h> int main() { int *p,*q,**k; int x=100; p=&x; //p…
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);…
It will clear the confusion about the pointer when arises. Sum clear: example code: #include<stdio.h> int main()…
A good example of pointer code at Hacker Rank: #include <stdio.h> void update(int *a,int *b) { //…
I tried to clear here my logic for pointer basic #include<iostream> using namespace std; int main(){ int…
Recent Comments