erste Schritte - Variablen

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

View File

@@ -1,6 +1,8 @@
#include <stdio.h> #include <stdio.h>
int main(){ int main(){
printf( "I am alive! Beware.\n" ); int telefonnummer;
telefonnummer = 7705281;
printf( "Telefonnummer: %d\n", telefonnummer );
getchar(); getchar();
return 0; return 0;
} }