This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/cprintf.c

15 lines
236 B
C
Raw Normal View History

#include <conio.h>
void main()
{
char *weekday, *month;
int day, year;
weekday = "Saturday";
month = "April";
day = 18;
year = 1987;
cprintf( "%s, %s %d, %d\n",
weekday, month, day, year );
}