My SBA
Posted by Flamez53
Last Updated: March 03, 2013
Something wrong the hell with this help me plz





// Data Filing Software That Stores Data Files Such As //
// Building Documents, Important Memos, Gas Bills,  //
// Payment Vouchers, Photo Graphs, Etc Etc //

#include <stdio.h>
#include <time.h>

int  main() {
    
    int tm_seconds;
    int tm_min;
    int tm_hour;
    int tm_mday;
    int tm_mon;
    int tm_year;
    int tm_wday;
    int tm_yday;
    
      typedef struct Time {
int    tm_sec   seconds [0,61]
int    tm_min   minutes [0,59]
int    tm_hour  hour [0,23]
int    tm_mday  day of month [1,31]
int    tm_mon   month of year [0,11]
int    tm_year  years since 1900
int    tm_wday  day of week [0,6] (Sunday = 0)
int    tm_yday  day of year [0,365]
      };
      
      
printf(" Welcome To The St Ann Digital Data Storage Software \n ");
printf(" Here Are Your Options For Using This Software Correctly \n");

    


int menu() {
   
    printf("******************************************");
    printf("********************************************");
    printf("***                                         ***");
    printf("***  ST ANN DIGITAL DATA STORAGE SOFTWARE   ***");
    printf("***                                          ***");
    printf("********************************************");
    printf("********************************************");    
                  
    printf("\tMENU");
    printf("( Present Options)");
    printf("Add File - Add File To Storage");
    printf("Del File - Delete File From Storage");
    printf("Move File - Move File From Old To New Storage Location");
    printf("Disp File - Display File In Storage");
    printf("Sear File - Search For File In Storage");
    printf("Exit Software - Exit Digital Data Storage Software");
    
    // Create Stores I.E Folders //
    
   
    return 0;

}



Related Content