Printf - strona 6

note /search

Calling a function - examples

  • Politechnika Śląska
  • Fundamentals of Computer Programming
Pobrań: 0
Wyświetleń: 441

; i++) printf("%d %d %d\n", i, power(2,i), power(-3,i)); return 0; } Results: 0 1 1 1 2 -3 2 4 9 3 8 -27 4 16 81...

Feof - examples

  • Politechnika Śląska
  • Fundamentals of Computer Programming
Pobrań: 0
Wyświetleń: 651

(stream)) printf("We have reached end-of-file\n"); /* close the file */ fclose(stream); return 0; } ...

Very big integers - overview

  • Politechnika Śląska
  • Fundamentals of Computer Programming
Pobrań: 0
Wyświetleń: 441

: - -9223372036854775808 .. 9223372036854775807 (signed) - 0 .. 18446744073709551615 (unsigned) • Printing with printf...

Strlen

  • Politechnika Śląska
  • Fundamentals of Computer Programming
Pobrań: 0
Wyświetleń: 644

compiler"; printf("%d\n", strlen(string)); return 0; } /* The result: 19 */ ...

Kurs programowania w C cz. 15

  • Politechnika Poznańska
  • Informatyka
Pobrań: 7
Wyświetleń: 686

. Dla przykładu, poniższe trzy fragmenty kodu źródłowego, dla kompilatora są takie same: printf("Hello world...