โช 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;
}
Find the output on a 64 bit GCC compiler.
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;
}