Hey.. er stødt på et underligt problem!
#include <iostream>
using namespace std;
int add(int a, int b);
int main()
{
cout << "Skriv 2 tal som skal +, -, * eller /'eres!" << endl;
add();
}
int add(int a, int b)
{
int c = (a, b);
cin >> a;
cout << "Skriv nu tal nummer 2!" << endl;
cin >> b;
return c = (a, b);
}
Er ikke færdig med koden endnu.. men hvad kan være galt? :s kan ikke finde fejlen!
error'en er:
-------------- Build: Debug in lol ---------------
Compiling: main.cpp
F:\c++ programmer\lol\main.cpp: In function `int main()':
F:\c++ programmer\lol\main.cpp:7: error: too few arguments to function `int add(int, int)'
F:\c++ programmer\lol\main.cpp:14: error: at this point in file
F:\c++ programmer\lol\main.cpp: In function `int add(int, int)':
F:\c++ programmer\lol\main.cpp:19: warning: left-hand operand of comma has no effect
F:\c++ programmer\lol\main.cpp:23: warning: left-hand operand of comma has no effect
Process terminated with status 1 (0 minutes, 0 seconds)
2 errors, 2 warnings