how 2 compile & execute c program with out using editor?

Answers were Sorted based on User's Feedback



how 2 compile & execute c program with out using editor?..

Answer / 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

how 2 compile & execute c program with out using editor?..

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

Post New Answer

More C Interview Questions

What is the explanation for modular programming?

0 Answers  


When should you not use a type cast?

0 Answers  


Which type of language is c?

0 Answers  


Why we use stdio h in c?

0 Answers  


main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }

4 Answers   Vector, Vector India,






How many keywords are there in c?

0 Answers  


how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y

2 Answers   TCS, Tech Synergy,


Explain the difference between malloc() and calloc() function?

0 Answers  


Can a pointer be volatile in c?

0 Answers  


how can i get output the following... 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1 and 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 plz plz...

3 Answers  


What are structure types in C?

0 Answers  


Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?

2 Answers   Accenture,


Categories