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 |
Is c# a good language?
What is pragma in c?
What is scope of variable in c?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
why should i select you?
What is table lookup in c?
What is Bitwise Operator and how it works?
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
hi send me sample aptitude papers of cts?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
Method Overloading exist in c ?
What are the back slash character constants or escape sequence charactersavailable in c?