C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} 1 1 2 3 None of these 1 1 2 2 0 1 2 3 0 1 2 2 1 1 2 3 None of these 1 1 2 2 0 1 2 3 0 1 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 9 10 11 12 13 None of these 10 11 12 13 14 15 Infinite loop 10 11 12 13 14 9 10 11 12 13 None of these 10 11 12 13 14 15 Infinite loop 10 11 12 13 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -32768 to 32767 -32668 to 32667 -3.4e38 to 3.4e38 -32767 to 32768 -32768 to 32767 -32668 to 32667 -3.4e38 to 3.4e38 -32767 to 32768 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the result of compiling and running this code?main(){ char string[] = "Hello World"; display(string);}void display(char *string){ printf("%s", string);} will print Hello World None of these. will print garbage value Compilation Error will print Hello World None of these. will print garbage value Compilation Error ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Merging two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. Extracting a substring out of a string. Combining two strings. Merging two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. Extracting a substring out of a string. Combining two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} 0 0 0 garbage values 1 1 1 Error 0 0 0 garbage values 1 1 1 Error ANSWER DOWNLOAD EXAMIANS APP