Answer Posted / rina
compiler is convert to the program in assembly language to
machin language....
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
When should the volatile modifier be used?
What is the advantage of an array over individual variables?
What is printf () in c?
When should structures be passed by values or by references?
What are global variables and how do you declare them?
Mention four important string handling functions in c languages .
Explain the array representation of a binary tree in C.
Can a variable be both constant and volatile?
What are local static variables? How can you use them?
What tq means in chat?
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 calloc()?
What does %c mean in c?
using only #include
Is c call by value?