main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / revathi
Correct Answer is 3.
Do not post wrong answer.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what does static variable mean?
What is a constant?
What the different types of arrays in c?
What are integer variable, floating-point variable and character variable?
Define the scope of static variables.
What is stack in c?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
How do I swap bytes?
What are the different types of linkage exist in c?
Distinguish between actual and formal arguments.
Explain how do you list a file’s date and time?
What is a program flowchart?
Does c have class?
Can one function call another?