how 2 compile & execute c program with out using editor?
Answers were Sorted based on User's Feedback
compling c executing c program without editor is similar to
that of Java program.
we just have to set the path to TC to the PATH environment
variable.
then using the TCC command we can execute the C program.....
EG: TCC sam.c //Compilation
sam //Execution
| Is This Answer Correct ? | 17 Yes | 3 No |
Answer / nihar sharma
after set path and complied prod ...that feed back from cmd
promt..cant file found
| Is This Answer Correct ? | 1 Yes | 3 No |
What is the purpose of 'register' keyword in c language?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
can we have joblib in a proc ?
What are the types of functions in c?
How can we open a file in Binary mode and Text mode?what is the difference?
how to make program without <> in library.
What are the restrictions of a modulus operator?
What is the main differences between C and Embedded C?
What is C language ?
application attempts to perform an operation?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
what is linkage error when it occurs in c program