-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
66 lines (54 loc) · 1.29 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <stdbool.h>
#include <stdio.h>
#define SIZE 7
int main(void) {
// printf("Hello, World!\n");
//
// int n, d;
// scanf("%d", &n);
//
// for (d = 2; d * d <= n; d++) {
// printf("n %d d %d %d\n", n, d, n % d);
//
// if (n % d == 0) break;
// }
//
// printf("r %d\n", d);
//
// if (d * d <= n) {
// printf("%d is divisible by %d\n", n, d);
// } else {
// printf("%d is prime\n", n);
// }
//
// int n, m = 20;
//
// for ( n = 0; m > 0; n++, m /= 2);
//
// printf("m: %d", m);
// char c = '\1';
//
// printf("%c\n", c);
//
// int sum = 0;
//
// for (int i = 0; i < 10; i++) {
// if (i % 2) continue;
//
// sum += i;
//
//
// printf("%d\n", 1 % 2);
//
// printf("Sum: %d", sum);
// printf("Size of Int: %ld\n", sizeof(int));
// printf("Size of Short: %ld\n", sizeof(short));
// printf("Size of Long: %ld\n", sizeof(long));
// printf("Size of Float: %ld\n", sizeof(float));
// printf("Size of Double: %ld\n", sizeof(double));
// printf("Size of Long Double: %ld\n", sizeof(long double));
//
const bool weekend[SIZE] = {[0] = true, [SIZE - 1] = true};
printf("%d", weekend[6]);
return 0;
}