C Programming A C variable cannot start with A number A special symbol other than underscore An alphabet Both of the above A number A special symbol other than underscore An alphabet Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 6 7 9 8 5 6 7 9 8 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Assignment operator Conditional operator Division operator Comma operator Unary-operator Assignment operator Conditional operator Division operator Comma operator Unary-operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} 6 None of these 0 Garbage Value 5 6 None of these 0 Garbage Value 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} Syntax error 65 65 53 65 053 65 065 65 Syntax error 65 65 53 65 053 65 065 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 I and II III and IV I, III and IV I, II and III II and III I and II III and IV I, III and IV I, II and III II and III ANSWER DOWNLOAD EXAMIANS APP