C Programming What is the correct value to return to the operating system upon the successful completion of a program? Program do no return a value. 2 1 -1 Program do no return a value. 2 1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 1 0 Compilation Error 33 -1 1 0 Compilation Error 33 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} Compiler Error None of These 12PP345 12PP Compiler Error None of These 12PP345 12PP ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} None of These Some Address will be printed H Hello None of These Some Address will be printed H Hello 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 Which of the following is a complete function? int funct(int x) { return x=x+1; } void funct(int) { printf(“Hello"); } int funct(); None of these void funct(x) { printf(“Hello"); } int funct(int x) { return x=x+1; } void funct(int) { printf(“Hello"); } int funct(); None of these void funct(x) { printf(“Hello"); } ANSWER DOWNLOAD EXAMIANS APP