Find the output on a 64 bit GCC compiler.


			  		

Loading

โœช Choose the correct option.

Find the output on a 64 bit GCC compiler.

#include 
#include
int main(){
char name[20]="David";
int salary=1500;
printf("%s %d ",name,salary);
fprintf(stdout,"%s %d ",name,salary);
return 0;
}

A. David 1500
B. David 1500
David 1500
C. 1500 1500
1500 1500
D. compiler error