main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / prakruthi
ryt answer is 3 for sure
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Can a pointer be static?
What is a c token and types of c tokens?
How do you write a program which produces its own source code as output?
How would you rename a function in C?
Why we use void main in c?
Is stack a keyword in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
Explain what standard functions are available to manipulate strings?
Explain the use of #pragma exit?
What is difference between && and & in c?
What is zero based addressing?
What are identifiers c?
When the macros gets expanded?
What are linked lists in c?
What is the use of a semicolon (;) at the end of every program statement?