Answer Posted / gaurav sharma
C is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system
C is an imperative systems implementation language.
It was designed to be compiled using a relatively straightforward compiler, to provide low-level access to memory, to provide language constructs that map efficiently to machine instructions, and to require minimal run-time support. C was therefore useful for many applications that had formerly been coded in assembly language..
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is wrong in this statement?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
How can I swap two values without using a temporary?
Is there anything like an ifdef for typedefs?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What are type modifiers in c?
How many types of operator or there in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is storage class?
What are the valid places to have keyword “break”?
Place the #include statement must be written in the program?
Tell us the use of fflush() function in c language?
What does sizeof int return?
show how link list can be used to repersent the following polynomial i) 5x+2
Explain output of printf("Hello World"-'A'+'B'); ?