C Programming Standard ANSI C recognizes ______ number of keywords? 24 40 36 30 32 24 40 36 30 32 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? Theoratically no limit. The only practical limits are memory size and compilers. 2 8 50 20 Theoratically no limit. The only practical limits are memory size and compilers. 2 8 50 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming Array passed as an argument to a function is interpreted as Values of the first elements of the array. Address of the array. Address of the first element of the array. Number of element of the array. Values of the first elements of the array. Address of the array. Address of the first element of the array. Number of element of the array. ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strrchr() None of these strstr() laststr() strnstr() strrchr() None of these strstr() laststr() strnstr() 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);} No output at all. Syntax error C NOITANIMAXE NOITANIMAXE C No output at all. Syntax error C NOITANIMAXE NOITANIMAXE C ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Gosling Dennis Ritchie Dr. F. Codd Bjarne Stroustrup James Gosling Dennis Ritchie Dr. F. Codd Bjarne Stroustrup James ANSWER DOWNLOAD EXAMIANS APP