int foo(int firstarg, bool secondarg) { bool firstvar = true; int secondvar = 18; return 0; } int main (int argc, char *argv[]) { int intvar = 80; bool boolvar = true; char chararray[201]; foo(15, true); return 0; }