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
What is adt in c programming?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
How can a number be converted to a string?
What is header file definition?
How can I invoke another program or command and trap its output?
What are the advantages and disadvantages of pointers?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What is the right type to use for boolean values in c? Is there a standard type?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
Write a program to reverse a linked list in c.
How do you print only part of a string?
What is indirection?
What is the scope of an external variable in c?
What are local static variables? How can you use them?
What are formal parameters?