blob: d8cb540ee733bf135d00668c679d4399edadf6d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
*
* 4.26
*
*
*/
int main () {
/*
It's only gauranteed for an int to have
16 bits. Most of the time on modern computers
we wont actually have 16 bit ints. But, to be
completely sure we use long so that we can
absolutely gaurantee that we have enough bits
so that we can set students to failed or passed.
*/
return 0;
}
|