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


Please Help Members By Posting Answers For Below Questions

An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?

675


What is the acronym for ansi?

634


What are the preprocessor categories?

641


Is exit(status) truly equivalent to returning the same status from main?

589


What is use of bit field?

776






Can you write the function prototype, definition and mention the other requirements.

664


What is null pointer in c?

598


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

702


What is meant by operator precedence?

680


What is 1f in c?

1842


Write a program to swap two numbers without using the third variable?

601


c program for searching a student details among 10 student details

1658


What is array within structure?

589


Write a program to print fibonacci series using recursion?

590


Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?

1602