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); 9 5 7 8 6 9 5 7 8 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope No scope at all Local scope Block scope Function scope File scope No scope at all Local scope Block scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? 1examians _examians exam_veda examians1 1examians _examians exam_veda examians1 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of include files All of these Takes care of conditional compilation Takes care of macros Acts before compilation Takes care of include files All of these Takes care of conditional compilation Takes care of macros Acts before compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 45545 45445 54554 54544 45545 45445 54554 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Gosling F. Codd Dr. Bjarne Stroustrup Dennis Ritchie James Gosling F. Codd Dr. Bjarne Stroustrup Dennis Ritchie James ANSWER DOWNLOAD EXAMIANS APP