What are the features of the c language?
No Answer is Posted For this Question
Be the First to Post Answer
Is null a keyword in c?
what is the self-referential structure?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
Explain the array representation of a binary tree in C.
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
#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); }
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
Expand the following LKB BKL FFG
What are the properties of union in c?
What are structure types in C?