main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / raj
3 is correct answer
| Is This Answer Correct ? | 24 Yes | 7 No |
Post New Answer View All Answers
What is page thrashing?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
How do you initialize pointer variables?
Why does notstrcat(string, "!");Work?
int i=10; printf("%d %d %d", i, i=20, i);
Compare interpreters and compilers.
Explain void pointer?
What is structure data type in c?
What is the advantage of an array over individual variables?
Without Computer networks, Computers will be half the use. Comment.
what do you mean by inline function in C?
Explain modulus operator. What are the restrictions of a modulus operator?
how can use subset in c program and give more example
What is #line used for?
Write a program to generate the Fibinocci Series