Advertisement
luluinstalock

Untitled

Feb 11th, 2016
1,654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. int main() {
  4.     int z2 = 3, y = 4, z1 = 8;
  5.     char z[10] = "egzamin";
  6.     char a = 'c';
  7.     double x;
  8.    
  9.     z1 = y / z2;
  10.     printf("%d ", z1);
  11.  
  12.     a = (z[1]++ - a);
  13.     printf("%d ", a);
  14.  
  15.     //x = ((z1++) - 4) / (y - 2);
  16.     //printf("%lf ", x);
  17.  
  18.     //printf("%c", z[1]);
  19.  
  20.     //z2 = 5;y = 6;
  21.     //z1 = (z2 / 4 + y++) % 4;
  22.     //printf("%d ", z1);
  23.  
  24.     //z1 = (!(y + z2)) || (z2 && 1);
  25.     //printf("%d ", z1);
  26.  
  27.     //x = (z1 / 6)*2.5 - y % 3;
  28.     //printf("%lf ", x);
  29.  
  30.     return 0;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement