C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 12 11 None of These 13 12 11 None of These 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 20 8 2 50 Theoratically no limit. The only practical limits are memory size and compilers. 20 8 2 50 Theoratically no limit. The only practical limits are memory size and compilers. ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with Both of the above A number A special symbol other than underscore An alphabet Both of the above A number A special symbol other than underscore An alphabet ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? James Dr. Dennis Ritchie Bjarne Stroustrup F. Codd Gosling James Dr. Dennis Ritchie Bjarne Stroustrup F. Codd Gosling ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of None of these. An Editor An operating system A compiler None of these. An Editor An operating system A compiler ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 5 5 2 4 5 2 4 4 8 5 5 2 5 5 2 4 5 2 4 4 8 5 5 ANSWER DOWNLOAD EXAMIANS APP