C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? efg defg bcdefg cdefg fg efg defg bcdefg cdefg fg 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) None of these 30 10 15 50 None of these 30 10 15 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} 10 10 Run time error 10 20 20 20 10 10 Run time error 10 20 20 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Combining two strings. Comparing the two strings to define the larger one. Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. Combining two strings. Comparing the two strings to define the larger one. Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 None of these. 9 10 11 None of these. 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 2, 4 4, 4 0, 2 2, 2 2, 0 2, 4 4, 4 0, 2 2, 2 ANSWER DOWNLOAD EXAMIANS APP