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
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
How can I read/write structures from/to data files?
Explain null pointer.
What are enums in c?
Can include files be nested? How many levels deep can include files be nested?
How to compare array with pointer in c?
What is echo in c programming?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What is type qualifiers?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is the difference between constant pointer and constant variable?
What are qualifiers in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is the purpose of type declarations?
What is the ANSI C Standard?