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
Explain modulus operator.
What is the code in while loop that returns the output of given code?
What is 1d array in c?
What happens if header file is included twice?
How can I delete a file?
What is an auto keyword in c?
Explain how can you restore a redirected standard stream?
By using C language input a date into it and if it is right?
What are register variables? What are the advantage of using register variables?
What is include directive in c?
What is function definition in c?
How do I round numbers?
Explain how do you print an address?
What is meant by errors and debugging?
Which type of language is c?