SW006014 Microchip Technology, SW006014 Datasheet - Page 61

C COMPILER MPLAB FOR PIC24 MCU

SW006014

Manufacturer Part Number
SW006014
Description
C COMPILER MPLAB FOR PIC24 MCU
Manufacturer
Microchip Technology
Type
MPLAB® C Compilerr
Series
PIC24r
Datasheet

Specifications of SW006014

Supported Families
PIC24
Core Architecture
PIC
Kit Contents
Software And Docs
Mcu Supported Families
PIC24
Tool Function
Compiler
Tool Type
Compiler
Processor Series
PIC24
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC24
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
© 2008 Microchip Technology Inc.
fopen (Continued)
}
Output:
Cannot open afile1
Second try, afile1 was opened
afile1 was closed
afile2 was opened
afile2 was closed
Explanation:
afile1 must exist before it can be opened for reading (r) or the
fopen function will fail. If the fopen function opens a file for writing
(w+) it does not have to already exist. If it doesn't exist, it will be created
and then opened.
if ((myfile1 = fopen("afile1", "r")) == NULL)
else
{
}
if ((myfile1 = fopen("afile1", "w+")) == NULL)
else
{
}
if ((myfile2 = fopen("afile2", "w+")) == NULL)
else
{
}
else
printf("Cannot open afile1\n");
printf("afile1 was opened\n");
y = fclose(myfile1);
if (y == EOF)
else
printf("Second try, cannot open afile1\n");
printf("Second try, afile1 was opened\n");
y = fclose(myfile1);
if (y == EOF)
else
printf("Cannot open afile2\n");
printf("afile2 was opened\n");
y = fclose(myfile2);
if (y == EOF)
printf("afile1 was not closed\n");
printf("afile1 was closed\n");
printf("afile1 was not closed\n");
printf("afile1 was closed\n");
printf("afile2 was not closed\n");
printf("afile2 was closed\n");
DS51456E-page 57

Related parts for SW006014