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
Tell me when is a void pointer used?
What is the explanation for modular programming?
Explain the difference between structs and unions in c?
What is use of bit field?
Explain a pre-processor and its advantages.
What is difference between structure and union?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
How can I discover how many arguments a function was actually called with?
What is dynamic memory allocation?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Who invented bcpl language?
Are pointers integer?
Why clrscr is used after variable declaration?
Write a program of prime number using recursion.
What is data types?