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 |
Subtract Two Number Without Using Subtraction Operator
what is an inline fuction??
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
Explain about block scope in c?
Which type of language is c?
Can you pass an entire structure to functions?
What is an volatile variable?
is c language is a object oreinted language?
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
can we define a function in structure?