typedef struct{
char *;
nodeptr next;
} * nodeptr ;
What does nodeptr stand for?
No Answer is Posted For this Question
Be the First to Post Answer
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
What are the different file extensions involved when programming in C?
What does return 1 means in c?
What is the use of getchar functions?
What is meant by errors and debugging?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Write a c program to demonstrate Type casting in c?
What is sizeof int in c?
write a program to print infinte number
What is a void pointer in c?
What do you understand by friend-functions? How are they used?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }