typedef struct{
char *;
nodeptr next;
} * nodeptr ;
What does nodeptr stand for?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,


What is a structure member in c?

0 Answers  


the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38

1 Answers  


Difference between linking and loading?

0 Answers  


How do you define a function?

0 Answers  






program in c to print 1 to 100 without using loop

9 Answers   Wipro,


How will you declare an array of three function pointers where each function receives two ints and returns a float?

0 Answers   TISL,


how many error occurs in C language ?

22 Answers   Infosys, Wipro,


HOW TO SWAP TWO NOS IN ONE STEP?

16 Answers   Satyam,


what is the differnce between AF_INET and PF_INET?

5 Answers   Systems Plus, Wipro,


void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?

7 Answers  


#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?

1 Answers   Groupon,


Categories