C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} None of These Hello H Some Address will be printed None of These Hello H Some Address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? _examians 1examians examians1 exam_veda _examians 1examians examians1 exam_veda ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by value result call by value call by reference None of these. call by value result call by value call by reference None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} Compiler Error Can't Say None of These will print Hello World Compiler Error Can't Say None of These will print Hello World ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these Morning M Good Good Morning None of these Morning M Good Good Morning ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 Garbage Value 1 0 2 3 Garbage Value 1 0 2 ANSWER DOWNLOAD EXAMIANS APP