C Programming C preprocessor Takes care of macros Takes care of include files All of these Acts before compilation Takes care of conditional compilation Takes care of macros Takes care of include files All of these Acts before compilation Takes care of conditional compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language System programming language None of these General purpose language Data processing language System programming language None of these General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? printf() gets() None of these scanf() puts() printf() gets() None of these scanf() puts() ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? float No data type Depends upon the type of the variable to which it is pointing. unsigned int int float No data type Depends upon the type of the variable to which it is pointing. unsigned int int ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the correct output of the following program?#includevoid main(){ char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]) rev[j] = str[j] ; puts(rev);} NOITANIMAXE C C Syntax error NOITANIMAXE No output at all. NOITANIMAXE C C Syntax error NOITANIMAXE No output at all. ANSWER DOWNLOAD EXAMIANS APP
C Programming Size of the array need not be specified, when All of these It is a formal parameter It is a declaratrion Initialization is a part of definition All of these It is a formal parameter It is a declaratrion Initialization is a part of definition ANSWER DOWNLOAD EXAMIANS APP