C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Hello H None of These Some Address will be printed Hello H None of These Some Address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 1 6 0 10 None of these 1 6 0 10 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope Block scope File scope No scope at all Local scope Function scope Block scope File scope No scope at all Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} Garbage Value 5 None of these 6 0 Garbage Value 5 None of these 6 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Parallel order Random order Iterative order Last In First Out order First In First Out order Parallel order Random order Iterative order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} None of These 0 Garbage Value 2 None of These 0 Garbage Value 2 ANSWER DOWNLOAD EXAMIANS APP