C Programming Functions have .......... No scope at all File scope Function scope Local scope Block scope No scope at all File scope Function scope Local scope Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Comma operator Unary-operator Conditional operator Division operator Assignment operator Comma operator Unary-operator Conditional operator Division operator Assignment operator ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Partitioning the string into two strings. Comparing the two strings to define the larger one. Combining two strings. Extracting a substring out of a string. Merging two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Combining two strings. Extracting a substring out of a string. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} None of These 5 7 6 None of These 5 7 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 3 4 10 5 4 4 10 5 3 3 10 5 4 3 10 5 5 5 10 5 3 4 10 5 4 4 10 5 3 3 10 5 4 3 10 5 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} 13 12 11 14 Compilation error 13 12 11 14 Compilation error ANSWER DOWNLOAD EXAMIANS APP