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 |
What is malloc() function?
What does != Mean in c?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Explain what is the best way to comment out a section of code that contains comments?
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
how to multiply two number taking input as a string (considering sum and carry )
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
What are the uses of null pointers?
What ios diff. Between %e & %f?
Can include files be nested?
What does return 1 means in c?
Can you add pointers together? Why would you?