Answer Posted / habeeb ahmed
10
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Where are some collections of useful code fragments and examples?
What does typedef struct mean?
What are pointers?
What are the types of unary operators?
What are local static variables? How can you use them?
What does *p++ do?
What is wrong with this code?
What does == mean in texting?
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
Are negative numbers true in c?
What would be an example of a structure analogous to structure c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Which of these functions is safer to use : fgets(), gets()? Why?
What is the maximum length of an identifier?
What is the c value paradox and how is it explained?