Example - strona 2

note /search

Managing Tables - wykład

  • Politechnika Śląska
  • Oracle Databases
Pobrań: 0
Wyświetleń: 448

: ■ About Tables ■ Viewing Tables ■ Viewing Table Data ■ Example: Creating a Table ■ Modifying Table...

The do while loop

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

The do-while loop • Syntax: do statement while (expression); • Example: int n; do { printf(”Enter...

Undefinig names

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

a routine is really a function, not a macro  Example: #undef getchar int getchar(void) { ... } ...

Arrays

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

] • Example: int t[10]; • Indexing: from 0 - what is the last index? • Access: t[5] = 17; ...