main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / anusha raykar
Please dont answer with blind mind.
Answer is= 3
100%
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What are dangling pointers in c?
How variables are declared in c?
What is union and structure?
What is %lu in c?
Why do we use & in c?
What does the c preprocessor do?
What is difference between scanf and gets?
Write a program to print fibonacci series without using recursion?
What does & mean in scanf?
Give differences between - new and malloc() , delete and free() ?
Write a program to print all permutations of a given string.
largest Of three Number using without if condition?
Differentiate Source Codes from Object Codes
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What is c mainly used for?