Answer Posted / saranya
Actually C is low level language.
basically C is implemented in washing macine and other
devices without C no other laguages can be easily evolved
like java,c++ etc and c is easily understandable language
developed by dennis richie it consist of data types,data
structres,string, functions,pointers hashing techniques etc
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
Why do we write return 0 in c?
What is a volatile keyword in c?
can we change the default calling convention in c if yes than how.........?
What is the benefit of using #define to declare a constant?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
How can I send mail from within a c program?
In a switch statement, explain what will happen if a break statement is omitted?
How pointers are declared?
In which language linux is written?
What is calloc() function?
What functions are in conio h?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is call by value in c?
What is the most efficient way to store flag values?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers