Answer Posted / ankit
WHICH IS ORDERED FIRST TO WAITER
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Explain heap and queue.
regarding pointers concept
can we have joblib in a proc ?
Differentiate between the expression “++a” and “a++”?
What are pointers? What are stacks and queues?
Tell us the use of fflush() function in c language?
What is meant by gets in c?
Where static variables are stored in c?
Why does the call char scanf work?
What is the purpose of sprintf?
what is the function of pragma directive in c?
What are the 32 keywords in c?
Tell me when would you use a pointer to a function?
What is binary tree in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }