Zeichenausgabe

This commit is contained in:
Stephan Richter
2018-02-09 13:41:40 +01:00
parent e273420c62
commit f582288a9f

View File

@@ -1,8 +1,7 @@
#include <stdio.h>
int main(){
int telefonnummer;
telefonnummer = 7705281;
printf( "Telefonnummer: %d\n", telefonnummer );
char c = '@';
printf( "Zeichen: %c\n", c);
getchar();
return 0;
}