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 the difference between c and python?
Why is structure padding done in c?
Define C in your own Language.
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
What is volatile
How was c created?
Write a code of a general series where the next element is the sum of last k terms.
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Explain the difference between null pointer and void pointer.
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100