What is break statement?
No Answer is Posted For this Question
Be the First to Post Answer
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
What is variable in c example?
Explain b+ tree?
Is c is a high level language?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Can we use any name in place of argv and argc as command line arguments?
Why is python slower than c?
Is it possible to initialize a variable at the time it was declared?
What is wrong with this declaration?
What is a pointer and how it is initialized?
When is a “switch” statement preferable over an “if” statement?
how to find out the union of two character arrays?