Which of the following is the function of the semantic analysis phase of compilation proc
A compiler for a high-level language that runs on one machine and produces code for a different machine is called
1 Crore+ students have signed up on EduRev. Have you? Download the App |
The __________ is a technique for building cross compilers for other machines.
__________ was developed from the beginning as a cross compiler.
What will be output of the following code?
#include<stdio.h>
intmain(){
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;
}
What will be output of the following c code?
#include<stdio.h> int main()
{ const int *p;
int a=10;
p=&a;
printf("%d",*p);
return 0;
}
Which of the following is the function of the semantic analysis phase of compilation proc