Stuff, Things

This commit is contained in:
Shaquille Soekhlal
2019-10-11 22:34:52 +02:00
parent 7c6fcb78b3
commit 957e7d3ed0
5 changed files with 122 additions and 7 deletions

17
Test/main.c Normal file
View File

@ -0,0 +1,17 @@
/*
* 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;
}