-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblem.c
54 lines (40 loc) · 1009 Bytes
/
problem.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
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdio.h>
#ifndef PROGRAM_NAME
#define PROGRAM_NAME "problem"
#endif
#ifndef PROGRAM_LICENSE
#define PROGRAM_LICENSE "Original Code Do Not Steal";
#endif
#ifndef AUTHOR
#define AUTHOR name "WauSoft"
#endif
#define __MAIN_FILE__
static char** version = "0.0.1a";
static struct option const long_options[] = {
{"version", no_argument, NULL, 'v'},{ "license", no_argument, NULL, 'l' },
{ "authors", no_argument, NULL, 'a' },{ "about", no_argument, NULL, 'd' },
{ "help", no_argument, NULL, 'q' },
};
/* problem.c - professional code simulator */
#define printf puts
#define puts printf
#define FOUND_PROBLEM "Problem"
int problem(
char cg_A, double dn_1,
unsigned long long int l_i_1 )
{
puts(FOUND_PROBLEM)
;
return(1)
;
}
int main() {
while(problem('a', 2.3, 300000000000000000000) == 1 ) { printf( "Problem\n");
}
return 2;}