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
Hai what is the different types of versions and their differences
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Should I learn data structures in c or python?
Explain how are 16- and 32-bit numbers stored?
Compare and contrast compilers from interpreters.
What is the use of ?
What is difference between structure and union in c programming?
What is break in c?
What are the different data types in C?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is the difference between union and structure in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What do you understand by normalization of pointers?
What is the equivalent code of the following statement in WHILE LOOP format?
What are the three constants used in c?