Answer Posted / shubham singh
To decrease the complexcity of the user problem and fast
work
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Explain the bubble sort algorithm.
How variables are declared in c?
What tq means in chat?
What are qualifiers and modifiers c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Did c have any year 2000 problems?
Explain what are the standard predefined macros?
Where define directive used?
What is the purpose of realloc()?
Can we declare variables anywhere 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 an auto variable in c?
What does c mean in standard form?
If you know then define #pragma?
Why is not a pointer null after calling free?