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
Can the curly brackets { } be used to enclose a single line of code?
When we use void main and int main?
What is this infamous null pointer, anyway?
List some of the dynamic data structures in C?
How can you find the day of the week given the date?
How can I get back to the interactive keyboard if stdin is redirected?
What is wild pointer in c with example?
Explain what happens if you free a pointer twice?
What are the disadvantages of a shell structure?
Explain what is the benefit of using an enum rather than a #define constant?
What is a file descriptor in c?
When should we use pointers in a c program?
In C language, a variable name cannot contain?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Explain #pragma statements.