main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / gowtham
complier error
| Is This Answer Correct ? | 13 Yes | 14 No |
Post New Answer View All Answers
What is difference between arrays and pointers?
What is a pragma?
What is const and volatile in c?
Is c pass by value or reference?
What is data structure in c programming?
Who invented b language?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Explain how does flowchart help in writing a program?
How can you check to see whether a symbol is defined?
What are runtime error?
What are the 4 types of functions?
Who invented bcpl language?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Which is the memory area not included in C program? give the reason
What is the difference between %d and %i?