C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 0 1 -1 33 Compilation Error 0 1 -1 33 Compilation Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? + * None of these % / + * None of these % / ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope Local scope No scope at all Block scope File scope Function scope Local scope No scope at all Block scope File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? double float char real int double float char real int ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program None of these Need not contain any function. Must contain at least one function. Needs input data. None of these Need not contain any function. Must contain at least one function. Needs input data. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} Error 0 0 0 garbage values 1 1 1 Error 0 0 0 garbage values 1 1 1 ANSWER DOWNLOAD EXAMIANS APP