Why & is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do you do dynamic memory allocation in C applications?
What is string constants?
What is the size of enum in c?
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
what is c
What is difference between union and structure in c?
What is the use of getch ()?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
What is Lazy evaluation in C? Give an example.
What does a run-time "null pointer assignment" error mean?