main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / lucky
out put is 3 and it is correct
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
What is the need of structure in c?
What is the difference between single charater constant and string constant?
Explain the binary height balanced tree?
Is linux written in c?
How are pointers declared in c?
what do you mean by inline function in C?
Explain what math functions are available for integers? For floating point?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
write a programming in c to find the sum of all elements in an array through function.
What is the difference between exit() and _exit() function in c?
What is mean by data types in c?
What does 3 mean in texting?
State the difference between x3 and x[3].
Give differences between - new and malloc() , delete and free() ?