C Programming String concatenation means - Combining two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Partitioning the string into two strings. Merging two strings. Combining two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Partitioning the string into two strings. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: *float ptr; float ptr; None of these float *ptr; *float ptr; float ptr; None of these float *ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} None of These 64 4 16 None of These 64 4 16 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?#includevoid main(){ int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; printf("%u, %u", a+1, &a+1);} 65474, 65476 None of these 65474, 65488 65480, 65488 65480, 65496 65474, 65476 None of these 65474, 65488 65480, 65488 65480, 65496 ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) 30 15 50 10 None of these 30 15 50 10 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} Compiler Error 20 Linker Error 2 Compiler Error 20 Linker Error 2 ANSWER DOWNLOAD EXAMIANS APP