Double - strona 3

note /search

Arrays of structures

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

Arrays of structures typedef struct { double re,im; } tcplx; void test() { int i; tcplx tab[50...

Variables - overview

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

types: - char - int - float - double • Specifiers: - short - long - unsigned ...

Adding integers to pointers

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

Adding integers to pointers double *pd; double t[10]; pd = &(t[5]); printf(”%p\n”,pd); /* 0065FB60...