Explain what are reserved words?
No Answer is Posted For this Question
Be the First to Post Answer
The file stdio.h, what does it contain?
What is void c?
What is a far pointer?What is the utility?
what is develop in c language
What is the use of typedef in c?
What is wild pointer in c?
Explain how can I remove the trailing spaces from a string?
WHAT IS MEANT BY LIFE?
1 232 34543 4567654 can anyone tell me how to slove this c question
How does selection sort work in 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); }
Why is the code below functioning. According to me it MUST NOT.