C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} Garbage Value 2 None of These 0 Garbage Value 2 None of These 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} None of These Forget it Ok here Error None of These Forget it Ok here Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 4, 4 2, 0 2, 2 2, 4 0, 2 4, 4 2, 0 2, 2 2, 4 0, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Last In First Out order Random order Iterative order Parallel order First In First Out order Last In First Out order Random order Iterative order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on a new line comes before the first executable statement has # as the first character need not start on the first column need not start on a new line comes before the first executable statement has # as the first character need not start on the first column ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr{7} arr[7] None of these arr{6} arr[6] arr{7} arr[7] None of these arr{6} arr[6] ANSWER DOWNLOAD EXAMIANS APP