How to run c Program without using IDE of c.
means if program made in notepad.then how to compile by
command prompt.
Answer Posted / 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 |
Post New Answer View All Answers
Are there namespaces in c?
How do c compilers work?
What is the use of #include in c?
What is the difference between a free-standing and a hosted environment?
What is the c value paradox and how is it explained?
What is the use of getchar functions?
Explain how can a program be made to print the line number where an error occurs?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Explain how do you determine a file’s attributes?
What are pointers? What are different types of pointers?
What is the difference between null pointer and wild pointer?
How many types of operator or there in c?
What is this pointer in c plus plus?
What is the benefit of using #define to declare a constant?
Why c is called a mid level programming language?