C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good None of these Morning Good Morning M Good None of these Morning Good Morning M ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 13 11 None of These 12 13 11 None of These 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} None of these 65486, 65488 65486, 65486 65486, 65487 65486, 65490 None of these 65486, 65488 65486, 65486 65486, 65487 65486, 65490 ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 1 Garbage Value 0 3 2 1 Garbage Value 0 3 2 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 None of these WorldHello World Hello World Hello None of these WorldHello World Hello World ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns None of these -1 true 0 1 None of these -1 true 0 1 ANSWER DOWNLOAD EXAMIANS APP