What is indirection?


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

Post New Answer

More C Interview Questions

WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?

4 Answers  


how to find a 5th bit is set in c program

4 Answers   IBM,


main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }

2 Answers  


What is volatile, register definition in C

0 Answers   Cognizant,


Why c is called top down?

0 Answers  






ABCDCBA ABC CBA AB BA A A

4 Answers   TCS,


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?

9 Answers   Ramco,


Explain what is a stream?

0 Answers  


what will be the output of this program main() { int i=1; while (i<=10); { i++; } }

11 Answers  


1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision

9 Answers   HCL, Qualcomm,


Explain the difference between getch() and getche() in c?

0 Answers  


what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error

9 Answers   Infosys,


Categories