Explain what is a const pointer?
No Answer is Posted For this Question
Be the First to Post Answer
without a terminator how can we print a message in a printf () function.
What does the message "automatic aggregate intialization is an ansi feature" mean?
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
What is integer constants?
what is Array?
What is auto keyword in c?
Why enum is used in c?
what is difference between C and C++
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .