C Programming int a[5] = {1,2,3}What is the value of a[4]? 1 Garbage Value 2 0 3 1 Garbage Value 2 0 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ long char int float short long char int float short ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is correct way to define the function fun() in the below program?#includevoid main(){ int a[3][4]; fun(a);} void fun(int *p[4]){} void fun(int p[][4]){} None of these void fun(int *p[3][4]){} void fun(int *p[][4]){} void fun(int *p[4]){} void fun(int p[][4]){} None of these void fun(int *p[3][4]){} void fun(int *p[][4]){} ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} hi hi followed by garbage value h Error Garbage Value hi hi followed by garbage value h Error Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? efg defg cdefg bcdefg fg efg defg cdefg bcdefg fg ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. The number of successful read input values. 1 ASCII value of the input read. 0 The actual values read for each argument. The number of successful read input values. 1 ASCII value of the input read. 0 ANSWER DOWNLOAD EXAMIANS APP