SW006014 Microchip Technology, SW006014 Datasheet - Page 80

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
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 SW006014