C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 0 1 Garbage Value 2 3 0 1 Garbage Value 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() strrchr() strnstr() None of these strstr() laststr() strrchr() strnstr() None of these strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. 1 0 ASCII value of the input read. The number of successful read input values. The actual values read for each argument. 1 0 ASCII value of the input read. The number of successful read input values. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} Infinite Loop 5 4 3 2 1 5 5 5 5 5 None of These Infinite Loop 5 4 3 2 1 5 5 5 5 5 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} haasi absiha asiha hai haasi absiha asiha hai ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A number An alphabet Both of the above A special symbol other than underscore A number An alphabet Both of the above A special symbol other than underscore ANSWER DOWNLOAD EXAMIANS APP