C Programming Determine Output:void main(){ static char *s[] = {"black", "white", "yellow", "violet"}; char **ptr[] = {s+3, s+2, s+1, s}, ***p; p = ptr; ++p; printf("%s",*--*++p + 3); } ck ow et te ck ow et te ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 10 0 14 1 10 0 14 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );} 2 1 0.25 9 0.5 2 1 0.25 9 0.5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } hai None of these haasi asiha absiha hai None of these haasi asiha absiha ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language None of these System programming language Data processing language General purpose language None of these System programming language Data processing language 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, 65486 65486, 65490 None of these 65486, 65488 65486, 65487 65486, 65486 65486, 65490 None of these 65486, 65488 65486, 65487 ANSWER DOWNLOAD EXAMIANS APP