C Programming Which of the following is not a correct variable type? double float int char real double float int char real 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); 7 9 8 5 6 7 9 8 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Conditional operator Assignment operator Comma operator Unary-operator Division operator Conditional operator Assignment operator Comma operator Unary-operator Division operator ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Last In First Out order Parallel order Random order Iterative order First In First Out order Last In First Out order Parallel order Random order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } None of these. H Some address will be printed Hello None of these. H Some address will be printed Hello ANSWER DOWNLOAD EXAMIANS APP
C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? fg efg bcdefg cdefg defg fg efg bcdefg cdefg defg ANSWER DOWNLOAD EXAMIANS APP