main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / vijay
expression likes
num[i]=i++;
are always compiler dependent.
it is a bad programing to use such expression.
| Is This Answer Correct ? | 9 Yes | 7 No |
Post New Answer View All Answers
Place the #include statement must be written in the program?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What are types of functions?
What is a constant?
What does double pointer mean in c?
What is c system32 taskhostw exe?
how to find anagram without using string functions using only loops in c programming
What is c standard library?
Hi can anyone tell what is a start up code?
what is the format specifier for printing a pointer value?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
How can I dynamically allocate arrays?
How can I find out how much free space is available on disk?
What does 2n 4c mean?