void main()
{
int a[10];
printf("%d %d", a[-1], a[12]);
}Select an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
133
Questions
3/7
Page
Pick an option on a question to see the right answer and solution.
void main()
{
int a[10];
printf("%d %d", a[-1], a[12]);
}Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
#include<stdio.h>
void main()
{
int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0};
printf("%u, %u", a+1, &a+1);
}Select an option to see the answer and solution.
#include<stdio.h>
int main()
{
int arr[1] = {10};
printf("%d", 0[arr]);
return 0;
}Select an option to see the answer and solution.
#include<stdio.h>
void main()
{
int arr[] = {12, 14, 15, 23, 45};
printf("%u, %u", arr, &arr);
}Select an option to see the answer and solution.
#include<stdio.h>
void main()
{
float arr[] = {12.4, 2.3, 4.5, 6.7};
printf("%d", sizeof(arr)/sizeof(arr[0]));
}Select an option to see the answer and solution.
#include<stdio.h>
void main()
{
int a[3][4];
fun(a);
}Select an option to see the answer and solution.
#include<stdio.h>
void main()
{
int size, i;
scanf("%d", &size);
int arr[size];
for(i=1; i<=size; i++)
{
scanf("%d", arr[i]);
printf("%d", arr[i]);
}
}Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
#include<stdio.h>
#include<string.h>
void main()
{
char str1[20] = "Hello", str2[20] = " World";
printf("%s", strcpy(str2, strcat(str1, str2)));
}Select an option to see the answer and solution.
#include<stdio.h>
void main()
{
printf(5+"Good Morningn");
}Select an option to see the answer and solution.
#include<stdio.h>
#include<string.h>
void main()
{
char str[] = "Exam\0Veda";
printf("%s", str);
}Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.