If I have that C-Code:
int main()
{
int a = 2;
int b = 3;
int c = a + b;
return c;
}
How can I generate for the upper example a:
- relocatable objectcode
- absolute objectcode
within Linux (Ubuntu) and the GNU gcc-compiler ?
If I have that C-Code:
int main()
{
int a = 2;
int b = 3;
int c = a + b;
return c;
}
How can I generate for the upper example a:
within Linux (Ubuntu) and the GNU gcc-compiler ?
Copyright © 2021 Jogjafile Inc.