what is the format specifier for printing a pointer value?
No Answer is Posted For this Question
Be the First to Post Answer
What is the best way to comment out a section of code that contains comments?
What is the difference between struct and union in C?
application of static variables in real time
How are variables declared in c?
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
what is a function pointer and how all to declare ,define and implement it ???
Is anything faster than c?
What is structure and union in c?
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
What functions are used in dynamic memory allocation in c?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
Explain what is wrong with this program statement? Void = 10;