What is the total generic pointer type?


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

Post New Answer

More C Interview Questions

main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?

2 Answers  


what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }

3 Answers  


Why isnt any of this standardized in c?

0 Answers  


What are high level languages like C and FORTRAN also known as?

0 Answers  






a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above

3 Answers  


What is data structure in c programming?

0 Answers  


What is void main ()?

0 Answers  


can we implement multi-threads in c.

0 Answers  


Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers

1 Answers  


void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?

8 Answers   Wipro,


How can you restore a redirected standard stream?

0 Answers  


Categories