dgquvn / repo

1 stars 1 forks source link

Minor function modifications required in FizzBuzz_generic_v1.cpp #2

Closed jayjaybillings closed 7 years ago

jayjaybillings commented 7 years ago

The signature of main() is incorrect. The proper declaration of main is

int main(int argc, char **argv) // or *argv[]

Also, strRead() should be moved above main() in the file so that the forward declaration can be removed.