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 |
Difference between Class and Struct.
13 Answers Ericsson, Motorola, Wipro,
Write a Program to accept different goods with the number, price and date of purchase and display them
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
what is use of malloc and calloc?
What is the difference between realloc() and free()
Explain zero based addressing.
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
Why is python slower than c?
What is main function in c?
How do I send escape sequences to control a terminal or other device?
Explain the difference between malloc() and calloc() function?
What are volatile variables?