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