main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / aniruddha
It will print answer 1 because in case of++ atfairt assing
and then increment..
| Is This Answer Correct ? | 5 Yes | 6 No |
Post New Answer View All Answers
In a header file whether functions are declared or defined?
How can you tell whether two strings are the same?
Is it better to bitshift a value than to multiply by 2?
What is || operator and how does it function in a program?
What is a MAC Address?
show how link list can be used to repersent the following polynomial i) 5x+2
Explain about C function prototype?
What is typedef?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
simple program of graphics and their output display
What is difference between structure and union with example?
Differentiate between a structure and a union.
What are pointers? Why are they used?
What is non linear data structure in c?
Is c is a middle level language?