C Language MCQ - English
What will happen if in a C program you assign a value to an array element whose
Home | Discussion ForumWhat will happen if in a C program you assign a value to an array element whose subscript exceeds the size of array?
Answer : C
View More Related Question
1) What will be printed after execution of the following code?
void main()
{
int arr[10] = {1,2,3,4,5};
printf("%d", arr[5]);
}
2) What will happen if in a C program you assign a value to an array element whose subscript exceeds the size of array?
View Answer
3) What will be the output of the following code?
void main()
{
int a[10];
printf("%d %d", a[-1], a[12]);
}
4) What will be the output of following program code?
#include <stdio.h>
int main(void)
{
char p;
char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8};
p = (buf + 1)[5];
printf("%d", p);
return 0;
}
5) Size of the array need not be specified, when
View Answer