Answer Posted / priya
In windows C program is compiled by
Alt+F9
Under linux, the C compiler is gcc.
$Gcc filename.c
For compiling C with graphics application in ubuntu
$G++ -lgraph filename.c
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is a const pointer?
What is dynamic variable in c?
What are c header files?
How can a process change an environment variable in its caller?
Differentiate between new and malloc(), delete and free() ?
What does c mean in basketball?
Why is structure padding done in c?
What are examples of structures?
What is chain pointer in c?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Do you know null pointer?
How would you obtain the current time and difference between two times?
How are structure passing and returning implemented?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Differentiate fundamental data types and derived data types in C.