ciabatta/test/test.c

18 lines
348 B
C
Raw Normal View History

2022-06-02 13:08:59 +00:00
#include <assert.h>
#include <ctype.h>
2022-06-06 00:16:44 +00:00
#include <stdio.h>
int main(int argc, char** argv) {
2022-06-06 00:16:44 +00:00
for (int i = 0; i < argc; i++) {
printf("[%d] = %s\n", i, argv[i]);
}
printf("%d\n", 583875381);
printf("%.*s", (int)3, "Hello");
for (char c = 'a'; c != 'z'; ++c) {
assert(isupper(toupper(c)));
2022-06-02 13:08:59 +00:00
}
2022-06-02 05:18:26 +00:00
return 0;
}