C Programming Which of the following function is more appropriate for reading in a multi-word string? puts() printf() gets() None of these scanf() puts() printf() gets() None of these scanf() ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd Dennis Ritchie Gosling Bjarne Stroustrup James Dr. F. Codd Dennis Ritchie Gosling Bjarne Stroustrup James Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } Some address will be printed Hello H None of these. Some address will be printed Hello H None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} complier error 1 1 -1 1 1 -1 -1 -1 complier error 1 1 -1 1 1 -1 -1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of macros All of these Acts before compilation Takes care of include files Takes care of conditional compilation Takes care of macros All of these Acts before compilation Takes care of include files Takes care of conditional compilation 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 int Depends upon the type of the variable to which it is pointing. unsigned int float No data type int Depends upon the type of the variable to which it is pointing. unsigned int ANSWER DOWNLOAD EXAMIANS APP