How to run c Program without using IDE of c.
means if program made in notepad.then how to compile by
command prompt.
Answer / rajesh
compile
gcc filename.c
its create exe file is a.out
run
./a.out
ll gie output
| Is This Answer Correct ? | 3 Yes | 0 No |
What is keyword in c?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
to get a line of text and count the number of vowels in it
What are the types of data files?
What is an object?
Is c weakly typed?
How to add two numbers without using semicolon at runtime
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
why array index always starts from zero??
Are there any problems with performing mathematical operations on different variable types?
What are Macros? What are its advantages and disadvantages?
Is python a c language?