Browse Source

erste Strings

lookup-tables
Stephan Richter 7 years ago
parent
commit
9459357c29
  1. 10
      src/main.c

10
src/main.c

@ -1,11 +1,9 @@ @@ -1,11 +1,9 @@
#include<stdio.h>
// Symbolische Konstante
#define MWSTFAKTOR 0.19
#include<string.h>
int main() {
float betrag = 350.0;
float mwst = betrag * MWSTFAKTOR;
printf("%.f% von %.2f Euro: %.2f Euro\n", MWSTFAKTOR * 100, betrag, mwst);
char string[] = "Die schoenen Dinge im Leben sind umsonst.";
int laenge = strlen(string);
printf("Laenge: %d Zeichen\n", laenge);
return 0;
}

Loading…
Cancel
Save