Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*przyklad wykorzystania lancuchow */
- #include <stdio.h>
- #include <string.h> //potrzebne do prototypu strlen
- #define GESTOSC 998.5
- int main(void)
- {
- char imie[40]; //imie jest tablica 40 znakow
- float waga, objetosc;
- int litery, rozmiar;
- printf("Czesc, jak masz na imie?\n");
- scanf("%s", imie);
- printf("%s, ile wynosi Twoja waga w kg?\n", imie);
- scanf("%f", &waga);
- objetosc = waga / GESTOSC;
- litery = strlen(imie);
- rozmiar = sizeof imie;
- printf("A wiec %s, Twoja objetosc wynosi %3.4f metrow szesciennych\n", imie, objetosc);
- printf("Twoje imie sklada sie z %d liter i mam %d bajtow aby je przechowac\n", litery,
- rozmiar);
- system("PAUSE");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement