C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 2 Garbage Value 0 1 3 2 Garbage Value 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these Good M Morning Good Morning None of these Good M Morning Good Morning ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 6 5 Compiler Error Garbage Value 6 5 Compiler Error Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} Complier error -10 to -1 -10 to infinite -10 to 0 Complier error -10 to -1 -10 to infinite -10 to 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Combining two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. Merging two strings. Extracting a substring out of a string. Combining two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. Merging two strings. Extracting a substring out of a string. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} 5 4 Error 6 5 4 Error 6 ANSWER DOWNLOAD EXAMIANS APP