how 2 compile & execute c program with out using editor?
Answer Posted / sam
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 |
Post New Answer View All Answers
Are the variables argc and argv are always local to main?
Why main is used in c?
What is %lu in c?
Explain what is the benefit of using #define to declare a constant?
Explain continue keyword in c
What is malloc and calloc?
What are the types of pointers in c?
How can you call a function, given its name as a string?
Which node is more powerful and can handle local information processing or graphics processing?
How can I implement a delay, or time a users response, with sub-second resolution?
why we wont use '&' sing in aceesing the string using scanf
Differentiate between the expression “++a” and “a++”?
What is 'bus error'?
What is 1f in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above