This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
s4-c/P55.c

14 lines
213 B
C

/* Exemple p54 */
#include <stdio.h>
int main() {
unsigned int x, y, z, w;
x = 1;
y = (x << 3);
z = 10;
w = (z >> 1);
printf("x, y, z, w = %d, %d, %d, %d\n", x, y, z, w);
return 0;
}