In which mode we open the file for read,write and append
also in c ?
a)W
b)w+
c)r+
d)a
Answer Posted / sanju_south
r+ which is read write and append also
| Is This Answer Correct ? | 49 Yes | 11 No |
Post New Answer View All Answers
What is meant by keywords in c?
Which programming language is best for getting job 2020?
Why main is used in c?
How do you determine whether to use a stream function or a low-level function?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Can we initialize extern variable in c?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
What does double pointer mean in c?
How can I do peek and poke in c?
Do you know the use of fflush() function?
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
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is line in c preprocessor?
Explain bitwise shift operators?