Digital-Systems-Assignments/Test/main.c
Shaquille Soekhlal 957e7d3ed0 Stuff, Things
2019-10-11 22:34:52 +02:00

17 lines
238 B
C

/*
* Student: S.K. Soekhlal
* Number: 4860632
* Assignment: 3.4
*/
#include<stdlib.h>
#include<stdio.h>
int main(){
int a,b;
a = 7 % 4;
printf("%d\n",a);
b = (a += 2) +5;
printf("%d %d\n",a,++b);
return 0;
}