Author: Not specified | Language: c |
Description: Not specified | Timestamp: 2018-03-26 12:34:47 +0000 |
View raw paste | Reply |
//
// main.c
// Set_calculation
//
// 201701562 ???
//
// Source on GitHub https://github.com/potados99/Set-calculation.git
//
// Created by B.J.Song on 2018. 3. 25..
// Copyright © 2018? B.J.Song. All rights reserved.
//
#include <stdio.h>
#include <stdlib.h>
#include "routine.h"
#include "locale.h"
#define ENG 0
#define KOR 1
int main(int argc, char *argv[]) {
language = KOR;
Arr A;
Arr B;
intro();
A = make_set_A();
B = make_set_B();
show_sets(A, B);
loop_operation(A, B);
outro();
free(A.array);
free(B.array);
return 0;
}
// main.c
// Set_calculation
//
// 201701562 ???
//
// Source on GitHub https://github.com/potados99/Set-calculation.git
//
// Created by B.J.Song on 2018. 3. 25..
// Copyright © 2018? B.J.Song. All rights reserved.
//
#include <stdio.h>
#include <stdlib.h>
#include "routine.h"
#include "locale.h"
#define ENG 0
#define KOR 1
int main(int argc, char *argv[]) {
language = KOR;
Arr A;
Arr B;
intro();
A = make_set_A();
B = make_set_B();
show_sets(A, B);
loop_operation(A, B);
outro();
free(A.array);
free(B.array);
return 0;
}
View raw paste | Reply |