What is the benefit of using an enum rather than a #define constant?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
I have a varargs function which accepts a float parameter?
What is the use of a static variable in c?
how can i get this by using for loop? * ** * **** * ******
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Can you assign a different address to an array tag?
what is a non volatile key word in c language?
What are the different types of C instructions?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What is console in c language?