function
<cstdio>
putcharint putchar ( int character );
Write character to stdout
Writes a character to the standard output (stdout).It is equivalent to calling putc with stdout as second argument.
1
2
3
4
5
6
7
8
9
10
/* putchar example: printing the alphabet */
#include <stdio.h>
int main ()
{
char c;
for (c = 'A' ; c <= 'Z' ; c++) putchar (c);
return 0;
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4