Answer Posted / karthikeyan
keywords are the words which have a specific meaning and
cannot be used as a variable
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
What is c system32 taskhostw exe?
What is dynamic memory allocation?
what is the significance of static storage class specifier?
Explain the difference between getch() and getche() in c?
Is c compiled or interpreted?
How reliable are floating-point comparisons?
What are the uses of null pointers?
Write a factorial program using C.
What is the purpose of scanf() and printf() functions?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Explain pointers in c programming?
Why is c faster?
How can I write a function that takes a format string and a variable number of arguments?
What are the salient features of c languages?
#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); }