Digital-Systems-Assignments/Test/main.c

17 lines
238 B
C
Raw Permalink Normal View History

2019-10-11 20:34:52 +00:00
/*
* 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;
}