Skip to content
Snippets Groups Projects
Commit 66d3159e authored by Boris Stefanovic's avatar Boris Stefanovic
Browse files

EDIT: cleanup

parent 75f8ba38
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,7 @@
#include <stdlib.h>
int main(int argc, char **argv) {
bool first = true;
int main() {
int decnum = 0;
int dectot = 0;
int prev, next;
......@@ -18,6 +17,6 @@ int main(int argc, char **argv) {
}
prev = next;
}
printf("\n%d %d\n\n", decnum, dectot);
printf("\n%d %d\n", decnum, dectot);
return EXIT_SUCCESS;
}
......@@ -93,7 +93,7 @@ void list_print(const list *ll) {
}
int main(int argc, char **argv) {
int main() {
int n;
list ll = list_create();
for (int i = 0; i < 4; ++i) {
......
......@@ -4,7 +4,7 @@
#include <stdlib.h>
int main(int argc, char **argv) {
int main() {
size_t size = 0;
scanf("%lud", &size);
int px[size];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment