C Programming String concatenation means - Merging two strings. Combining two strings. Partitioning the string into two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Merging two strings. Combining two strings. Partitioning the string into two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} Error 300 %d\n None of These Error 300 %d\n None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 4 4 2 5 5 2 4 5 5 5 5 2 4 4 2 5 5 2 4 5 5 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} None of These 11 9 10 None of These 11 9 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 0 0, 2 2, 2 2, 4 4, 4 2, 0 0, 2 2, 2 2, 4 4, 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is None of these. call by value call by value result call by reference None of these. call by value call by value result call by reference ANSWER DOWNLOAD EXAMIANS APP