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
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Is array a primitive data type in c?
What is the use of parallelize in spark?
Explain which function in c can be used to append a string to another string?
How to create struct variables?
Explain what does the function toupper() do?
How are portions of a program disabled in demo versions?
What is the auto keyword good for?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Describe the order of precedence with regards to operators in C.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
how to introdu5ce my self in serco
In C programming, how do you insert quote characters (‘ and “) into the output screen?
How can a string be converted to a number?