A system program that combines separately compiled modules of a program into a form suitable for execution is called ___________
A compiler for a high-level language that runs on one machine and produces code for a different machine is called ___________
Cross-compiler is a compiler __________
Cross compiler is used in Bootstrapping.
Is GCC a cross Complier.
GCC, a free software collection of compilers, also can be used as cross compile. It supports many languages and platforms.
__________ was developed from the beginning as a cross compiler.
If we compile the sam.c file with the command “gcc -o sam sam.c”, then the executable file will be?
What will be output of the following code?
#include<stdio.h>
int main()
{
printf("%d\t",sizeof(6.5));
printf("%d\t",sizeof(90000));
printf("%d",sizeof('A'));
return 0;
}
What will be output of the following c code? ( according to GCC compiler)
#include<stdio.h>
int main()
{
signed x;
unsigned y;
x = 10 +- 10u + 10u +- 10;
y = x;
if(x==y)
printf("%d %d",x,y);
else if(x!=y)
printf("%u %u",x,y);
return 0;
}