Computer Programming Contest Preparation

ToolBox - Source for: 124/12478/a.c



/home/toolbox/public_html/solutions/124/12478/a.c
    1 #include <stdio.h>
    2 #include <string.h>
    3 #include <sys/types.h>
    4 #include <sys/stat.h>
    5 #include <fcntl.h>
    6 #include <stdint.h>
    7 #include <math.h>
    8 #include <stdlib.h>
    9 #include <ctype.h>
   10 
   11 #define TRUE  (1 == 1)
   12 #define FALSE (1 != 1)
   13 
   14 #define DEBUG if (FALSE)
   15 
   16 /*
   17  *  Author: Isaac Traxler
   18  *    Date: 2023-11-07
   19  * Purpose: fun
   20  * Problem: 12478
   21  */
   22 
   23 /*
   24  * This template reads data until a terminating value is reached.
   25  */
   26 
   27 void init()
   28 {
   29     /* FUNCTION init */
   30 } /* FUNCTION init */
   31 
   32 void dump()
   33 {
   34     /* FUNCTION dump */
   35 } /* FUNCTION dump */
   36 
   37 int getInput()
   38 {
   39     /* FUNCTION getInput */
   40     int dataReadFlag;
   41     return (dataReadFlag);
   42 } /* FUNCTION getInput */
   43 
   44 void process()
   45 {
   46     /* FUNCTION process */
   47 } /* FUNCTION process */
   48 
   49 int main()
   50 {
   51     /* main */
   52 
   53     printf("KABIR\n");
   54     return EXIT_SUCCESS;
   55 } /* main */
   56