C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} c 65 A Error c 65 A Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Exam_veda Examians None of these Both A and B Exam veda Exam_veda Examians None of these Both A and B Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 17 19 16 20 -1 17 19 16 20 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Last In First Out order Random order First In First Out order Parallel order Iterative order Last In First Out order Random order First In First Out order Parallel order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 4 4 2 5 5 5 5 5 2 4 5 2 4 4 2 5 5 5 5 5 2 4 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope Block scope No scope at all File scope Local scope Function scope Block scope No scope at all File scope Local scope ANSWER DOWNLOAD EXAMIANS APP