Installer Steam
Logg inn
|
språk
简体中文 (forenklet kinesisk)
繁體中文 (tradisjonell kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tsjekkisk)
Dansk (dansk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spania)
Español – Latinoamérica (spansk – Latin-Amerika)
Ελληνικά (gresk)
Français (fransk)
Italiano (italiensk)
Bahasa Indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (nederlandsk)
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasil)
Română (rumensk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (vietnamesisk)
Українська (ukrainsk)
Rapporter et problem med oversettelse
#include <inttypes.h>
void add_book(char *title_p, char *author_p, int16_t *price_p, int16_t *bookcounter_p){
printf("\nBuchtitel?: "); scanf("%s", title_p); scanf("%c"); //scanf's 2nd parameter is the adress of the variable to store in,
printf("Autor?: "); scanf("%s", author_p); scanf("%c"); //that's y the pointers are given directly
printf("Preis?: "); scanf("%d", price_p); scanf("%c");
*bookcounter_p += 1; //*bookcounter_p++; seemingly doesn't work
}
void show_list(int16_t *bookcounter_p, book_t *books_p){
for(uint8_t i = 0; i < *bookcounter_p; i++){
printf("\nBuch %d: %s von %s, (%d Euro)\n", (i+1), books_p .title, books_p .author, books_p .price);
}
}