Answer Posted / z
Trick question: the phrase "one step" is undefined.
Example: how many steps are there in the following statement?
a = ++b;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
In c language can we compile a program without main() function?
Why use int main instead of void main?
Write a program to print “hello world” without using semicolon?
What is zero based addressing?
What is queue in c?
can any one tel me wt is the question pattern for NIC exam
Does c have class?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
When should I declare a function?
How to Throw some light on the splay trees?
How is a pointer variable declared?
How many bytes is a struct in c?
How do you print an address?
What do you mean by invalid pointer arithmetic?
Can 'this' pointer by used in the constructor?