C Programming C programs are converted into machine language with the help of An Editor None of these. An operating system A compiler An Editor None of these. An operating system A compiler ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} absiha asiha hai haasi absiha asiha hai haasi ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} 65486, 65490 65486, 65487 65486, 65488 65486, 65486 None of these 65486, 65490 65486, 65487 65486, 65488 65486, 65486 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following code:void main(){ int a[5] = {6,8,3,9,0}, i=0; if(i != 0) { break; printf("%d", a[i]); } else printf("%d", a[i++]);}What is the output of the above program? 8 6 Runtime error Syntax error No output 8 6 Runtime error Syntax error No output ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 10 None of these 14 0 1 10 None of these 14 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[6] arr[7] arr{6} arr{7} None of these arr[6] arr[7] arr{6} arr{7} None of these ANSWER DOWNLOAD EXAMIANS APP