Expresii si Instructiuni
~ &(si) ^ | << >> se aplica la intregi
= op=
x = sqrt (a = 3*x)
++ --
Cea mai frecventa forma a unei instructiuni este o instructiune expresie; ea consta dintr-o expresie urmata de un punct si virgula.
a = b*3+c;
cout << "go go go";
lseek(fd, 0, 2);
Instructiunea VIDA:
;
Blocuri:
Instructiunea IF:
#include <stream.h>
main() //converteste din inch in cm si invers
else
if(ch=='c')
else
in = cm = 0;
cout << in << "in=" << cm << "cm\n";
}
Instructiunea SWITCH:
switch(ch)
Instructiunea WHILE:
while(*p!=0)
*q = 0;
while(*p)
*q++ = *p++;
*q = 0;
while(*q++ = *p++);
Instructiunea FOR:
for(int i=0; i<10; i++)
q[i] = p[i];
Declaratii:
for(int i=1; i<MAX; i++)
|