What are the __date__ and __time__ preprocessor commands?
No Answer is Posted For this Question
Be the First to Post Answer
What are the modifiers available in c programming language?
What are the loops in c?
what is data structure?
Is c functional or procedural?
What is volatile keyword in c?
What's the difference between calloc() and malloc()?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is the use of sizeof?
What does calloc stand for?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
#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); }
What are the advantages and disadvantages of pointers?