print_c
| print_c | |
|---|---|
| Turn-in directory | 00_print_c/ |
| Files to turn in | print_c.c |
| Allowed functions | putchar |
- Write a program which displays the character
con standard output. - To help you get started, we will provide some code for you to copy/paste/edit. Make sure you understand every line before you hand it in!
#include <stdio.h> int main() { char c = '0'; putchar(c); return 0; }
Example output:
$ ./a.out
c$