main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / vinay
Idiots please don't give wrong answers. While you answer
the questions, please check the output practically and post
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Define circular linked list.
Explain 'bit masking'?
Distinguish between actual and formal arguments.
What are external variables in c?
How can I direct output to the printer?
What are the advantages and disadvantages of c language?
What is wrong in this statement? scanf(ā%dā,whatnumber);
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
I need a sort of an approximate strcmp routine?
What are the 5 types of inheritance in c ++?
What are the different types of control structures in programming?
What is c basic?
How is = symbol different from == symbol in c programming?
When should you not use a type cast?
What is void main () in c?