int main(); void foo(); int main() { int a = 6; int b = 7; int c = a * b; return 0; } void foo() { std::string foo = "bar"; }