main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / ssssssssss
output
2
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
Where define directive used?
In C language, a variable name cannot contain?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What is the size of enum in bytes?
What is memory leak in c?
Write a program on swapping (100, 50)
Explain the use of #pragma exit?
Give basis knowledge of web designing ...
What are categories used for in c?
Why clrscr is used after variable declaration?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Should a function contain a return statement if it does not return a value?
What is p in text message?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Why doesnt long int work?