Hi,
I have been trying to write a code in C with CCS 3.1 and I want to read a .txt file from my pc into the chip but when I built it ,CCS showes the below Error:
please help me ,
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I have been trying to write a code in C with CCS 3.1 and I want to read a .txt file from my pc into the chip but when I built it ,CCS showes the below Error:
please help me ,
Hello,
This is not a CCS error but a programming error in your code.
Look at your fprintf call and then look at the parameters that should be passed to an fprintf call:
http://www.tutorialspoint.com/c_standard_library/c_function_fprintf.htm
Thanks
ki
saeed vaziri said:,I checked the link
Check the link again and note the type for the first parameter needed for fprintf. Then check the type of the first parameter you are passing into you fprintf call in your code.
ki