How the C program can be compiled?
Answers were Sorted based on User's Feedback
Answer / guest
after writing entire code first compile the program using
alt+F9.Then look at the errors and warnings ,after all the
errors and warnings are rectified u can run the program by
ctrl+F9.to watch the output go through the key alt+F5.
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / anilkumar927@gmail.com
Do you want the commands for compilation of our code or how
the code is compiling internally?
for commands for compilation : (in Linux)
$cc <filename.c>
Process as fallows :
Application Program --> preprocessor --> Compiler --->
linker ---> loader.
If you want more information please let me know on mail
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / priya
In windows C program is compiled by
Alt+F9
Under linux, the C compiler is gcc.
$Gcc filename.c
For compiling C with graphics application in ubuntu
$G++ -lgraph filename.c
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / rina
compiler is convert to the program in assembly language to
machin language....
| Is This Answer Correct ? | 1 Yes | 1 No |
Linux/Unix
* Pre-requisite : Before compiling check if gcc package is installed, if not install it either by using apt-get install/yum install based on the Linux kernel.
* Once installed, save the program as hello.c
* Compile it using gcc hello.c which will produce object file a.out
* Finally run it as ./a.out
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sanjay singh
Simply by pressing Alt + F9 Key from the keyboard.
"Note we can also execute a program with compiling if it has
no error in the program in the coding form"
| Is This Answer Correct ? | 1 Yes | 2 No |
We can compile program after writing code by pressing short
key Alt+F9 or by going on the menu compile->compile
| Is This Answer Correct ? | 1 Yes | 3 No |
What is the Purpose of 'extern' keyword in a function declaration?
What is Heap?
4. main() { int c=- -2; printf("c=%d",c); }
What is identifiers in c with examples?
How can I do graphics in c?
What is the benefit of using an enum rather than a #define constant?
What is the difference between the = symbol and == symbol?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
Ow can I insert or delete a line (or record) in the middle of a file?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
If an old women's age is the same as her three grand daughters i,mean the number of days old child=the no of weeks old child=no of months old child .The total yrs of all these ppl is 114 yrs...then how old is the old woman? the yr has 365 days..and 30 days each month.