Task 1 Skeleton Code

Please don't include any extra libraries in your homework. We already included all necessary libraries in the skeleton code.

#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdbool.h>

const char* const msg_cannot_input = "Please input a math equation:\n";
const char* const msg_cannot_output = "Output:\n";
const char* const error_msg = "ERROR! The string input is not supported!!\n";

int main(){
    
    return 0;
}

// Deleted code is debugged code.

Last updated