19 lines
355 B
C
19 lines
355 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
// declare variable
|
||
|
char c;
|
||
|
|
||
|
// Wait for a kepypress, store result in c
|
||
|
c = getchar();
|
||
|
|
||
|
// Display on the screen using printf
|
||
|
printf ("The charcter pressed was %c\n", c);
|
||
|
|
||
|
// Display the charcter using putchar()
|
||
|
putchar(c);
|
||
|
|
||
|
return 0; // Exit from main
|
||
|
}
|