What is c language and why we use it?
No Answer is Posted For this Question
Be the First to Post Answer
What are the restrictions of a modulus operator?
Why is c so powerful?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is the modulus operator?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
How can you print HELLO WORLD without using "semicolon"?
Why static variable is used in c?
Is it possible to execute code even after the program exits the main() function?
what is the differance between pass by reference and pass by value.
What is #line in c?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }