What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
Answer Posted / sathish kumar
Hi All,
In the above function call fopen we should have used "C:\\"
instead of using "C:\". Because '\' is treated as a escape
sequence.
Thanks & Regards
Sathish Kumar
| Is This Answer Correct ? | 31 Yes | 0 No |
Post New Answer View All Answers
I have seen function declarations that look like this
What does volatile do?
explain what is fifo?
Is null always defined as 0(zero)?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
Do character constants represent numerical values?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Write a Program to accept different goods with the number, price and date of purchase and display them
What is a node in c?
How do we print only part of a string in c?
Is c language still used?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Difference between constant pointer and pointer to a constant.
find the sum of two matrices and WAP for it.
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..