Currently I am trying to verify this function:
#include <errno.h>
#include <limits.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
int main(int argc, char* argv[])
{
int i = 0;
if(argc == 1)
i = argv[1];
assert(i == 1);
}
However, I am unsure how to test this with inputting parameters for main. Therefore was wondering how I can verify this function with inputting the parameters for main?