How can you call a function, given its name as a string?
Can the curly brackets { } be used to enclose a single line of code?
Why use int main instead of void main?
What is the collection of communication lines and routers called?
How can you find out how much memory is available?
why we are using float in C
Are c and c++ the same?
how to write a bubble sort program without using temporary variable?
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
What does it mean when the linker says that _end is undefined?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Why c language?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error