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
What is the explanation for prototype function in c?
What are the 5 data types?
How to delete a node from linked list w/o using collectons?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is preprocessor with example?
What is the purpose of macro in C language?
What is the sizeof () operator?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
How do you declare a variable that will hold string values?
What is #include stdlib h?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is the use of getchar() function?
What is a global variable in c?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is the purpose of scanf() and printf() functions?