C Programming C programs are converted into machine language with the help of None of these. An operating system An Editor A compiler None of these. An operating system An Editor A compiler ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} Compiler Error None of These 12PP 12PP345 Compiler Error None of These 12PP 12PP345 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 4 2 4 5 8 5 5 2 5 5 2 4 4 2 4 5 8 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} 6 5 7 None of These 6 5 7 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order Iterative order First In First Out order Random order Last In First Out order Parallel order Iterative order First In First Out order Random order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 216 – 1 215 – 1 216 None of these 215 216 – 1 215 – 1 216 None of these ANSWER DOWNLOAD EXAMIANS APP