Wyniki wyszukiwania dla frazy: In%C5%BCynieria %C5%9Brodowiska - strona 162

note /search

Goto

  • Politechnika Śląska
  • Computer Programming
Pobrań: 0
Wyświetleń: 623

Goto  more restrictions than in C: - cannot jump over initialization (in C initializations are...

Inline functions

  • Politechnika Śląska
  • Computer Programming
Pobrań: 7
Wyświetleń: 448

Inline functions inline int sum(int a, int b) { return a+b; }  places the code in place where it...

Prototypes of functions

  • Politechnika Śląska
  • Computer Programming
Pobrań: 0
Wyświetleń: 455

Prototypes of functions  Function prototypes are required!!! (return value, name, arguments)  In...

Quick Sort

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

Quick Sort  Find a random element x  Place elements < x in the left part of the array, elements...

Reading files

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

Reading files  A file may be rewound • may be done instead of storing a line in a buffer...

Time measurement

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

time_t tzset  Continuous time in seconds - Starting date: January 1st, 1970 - Type: long int (signed, 32...

To use macros with parameters

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

To use macros with parameters or not to use  In C: useful, but be careful  In C++: better use...

Binary Search Tree

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

 Keys should be linearly orderable  All elements in the left subtree have less keys than the key of the...