SW006013 Microchip Technology, SW006013 Datasheet - Page 80

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
DS51456E-page 76
putchar
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
puts
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
Put a character to stdout.
<stdio.h>
int putchar(int c);
c
Returns the character or EOF if an error occurs or end-of-file is
reached.
Same effect as fputc with stdout as an argument.
#include <stdio.h> /* for putchar, printf, */
int main(void)
{
}
Output:
This is text
Put a string to stdout.
<stdio.h>
int puts(const char *s);
s
Returns a non-negative value if successful; otherwise, returns EOF.
The function writes characters to the stream stdout. A newline char-
acter is appended. The terminating null character is not written to the
stream.
#include <stdio.h> /* for puts */
int main(void)
{
}
Output:
This is text
|
char *y;
char buf[] = "This is text\n";
int x;
x = 0;
for (y = buf; (x != EOF) && (*y != '\0'); y++)
char buf[] = "This is text\n";
puts(buf);
puts("|");
x = putchar(*y);
character to be written
string to be written
/* EOF, stdout
© 2008 Microchip Technology Inc.
*/

Related parts for SW006013