Stuff, Things
This commit is contained in:
17
Test/main.c
Normal file
17
Test/main.c
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user