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 are pointers? What are different types of pointers?
Can you please explain the difference between malloc() and calloc() function?
write a program to concatenation the string using switch case?
What is pointer to pointer in c language?
find out largest elemant of diagonalmatrix
What do you understand by friend-functions? How are they used?
program to convert a integer to string in c language'
What is main () in c language?
What are inbuilt functions in c?
What's the right way to use errno?
What is string in c language?
Explain what is page thrashing?
What is realloc in c?
What is restrict keyword in c?
What is string length in c?