Hi All,
I have one small doubt in C
I have written a below program
int main()
{
float a;
int b;
long c
c =a + b;
}
my question is when the type cheking will happen.
How should compiler will know a flaot, b int and c is long during execution.
Where these are stored... in map file?
Can any one explain me on this.
Thanks
I have one small doubt in C
I have written a below program
int main()
{
float a;
int b;
long c
c =a + b;
}
my question is when the type cheking will happen.
How should compiler will know a flaot, b int and c is long during execution.
Where these are stored... in map file?
Can any one explain me on this.
Thanks
Comment