ccpp:literals

SQLite & PDO SQLite support missing in this PHP install - plugin will not work
The Sqlite Php Extension is mandatory. It seems that it's not available on this installation.

Toto je starší verze dokumentu!


Literály jednoduchých datových typů

Zde je seznam ukázek literálů

int a = -42;
int b = 0;
int c = 10;
float a = 3.14159f;
float b = 0.5f;
float c = .5f;
double d = 3.14159;
double e = .2;
double f = 1.6e-19 // 1.6 x 10^-19
double g = 1.6E19 // 1.6 x 10^19
char a = 'X';
char b = '\n'; // nový řádek
char c = ' '; // mezera
char d = 'x';
char e = '\''; //apostrof
  • ccpp/literals.1602486630.txt.gz
  • Poslední úprava: 2020/10/12 09:10
  • autor: bures