C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} None of these 1 6 10 0 None of these 1 6 10 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} None of These Some Address will be printed H Hello None of These Some Address will be printed H Hello ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Merging two strings. Combining two strings. Extracting a substring out of a string. Partitioning the string into two strings. Comparing the two strings to define the larger one. Merging two strings. Combining two strings. Extracting a substring out of a string. Partitioning the string into two strings. Comparing the two strings to define the larger one. ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; None of these. is legal but meaningless is syntactically and semantically correct is illegal None of these. is legal but meaningless is syntactically and semantically correct is illegal ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ int a, b, c, d; a = 3; b = 5; c = a, b; d = (a, b); printf("c=%d d=%d", c, d);} c=5 d=5 c=3 d=3 c=5 d=3 c=3 d=5 c=5 d=5 c=3 d=3 c=5 d=3 c=3 d=5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? examians1 _examians exam_veda 1examians examians1 _examians exam_veda 1examians ANSWER DOWNLOAD EXAMIANS APP