SW006013 Microchip Technology, SW006013 Datasheet - Page 61

MPLAB C Compiler For DsPIC DSCs

SW006013

Manufacturer Part Number
SW006013
Description
MPLAB C Compiler For DsPIC DSCs
Manufacturer
Microchip Technology
Series
DsPIC30F/33Fr
Type
MPLAB® C Compilerr
Datasheet

Specifications of SW006013

Supported Families
DsPIC30F, DsPIC33F
Core Architecture
DsPIC
Kit Contents
Software And Docs
Mcu Supported Families
DsPIC30F And DsPIC33F
Tool Function
Compiler
Tool Type
Compiler
Processor Series
dsPIC
Lead Free Status / RoHS Status
na
For Use With/related Products
dSPIC DSCs
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 SW006013