C Programming int a[5] = {1,2,3}What is the value of a[4]? Garbage Value 3 0 2 1 Garbage Value 3 0 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} Hello World None of these World Hello WorldHello Hello World None of these World Hello WorldHello ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? int float real double char int float real double char ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int a[] = {10,20,30,40,50}, j, *p; for(j=0; j<5; j++){ printf("%d" ,*a); a++; } p = a; for(j=0; j<5; j++){ printf("%d" ,*p); p++; }} 10 20 30 40 50 Garbage Value None of These Error 10 20 30 40 50 10 20 30 40 50 10 20 30 40 50 Garbage Value None of These Error 10 20 30 40 50 10 20 30 40 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 14 10 1 0 None of these 14 10 1 0 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 II and III I, III and IV I, II and III III and IV I and II II and III I, III and IV I, II and III III and IV I and II ANSWER DOWNLOAD EXAMIANS APP