What is indirection?
No Answer is Posted For this Question
Be the First to Post Answer
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
how to find a 5th bit is set in c program
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
What is volatile, register definition in C
Why c is called top down?
ABCDCBA ABC CBA AB BA A A
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
Explain what is a stream?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
Explain the difference between getch() and getche() in c?
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