Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<stdlib.h>
- int main() {
- int z2 = 3, y = 4, z1 = 8;
- char z[10] = "egzamin";
- char a = 'c';
- double x;
- z1 = y / z2;
- printf("%d ", z1);
- a = (z[1]++ - a);
- printf("%d ", a);
- //x = ((z1++) - 4) / (y - 2);
- //printf("%lf ", x);
- //printf("%c", z[1]);
- //z2 = 5;y = 6;
- //z1 = (z2 / 4 + y++) % 4;
- //printf("%d ", z1);
- //z1 = (!(y + z2)) || (z2 && 1);
- //printf("%d ", z1);
- //x = (z1 / 6)*2.5 - y % 3;
- //printf("%lf ", x);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement