What is advantage of pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
is it possible to create your own header files?
Explain the difference between call by value and call by reference in c language?
What does extern mean in a function declaration?
What is the best way of making my program efficient?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
What is data structure in c language?
Why is it important to memset a variable, immediately after allocating memory to it ?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
Explain how do you print only part of a string?
biggest of two no's with out using if condition statement
what is the structure pointer?