Subj : Newbie help again To : borland.public.cpp.borlandcpp From : Nick Knopf Date : Fri Jul 30 2004 01:04 pm I know I'm new, don't laugh at me... I seem to be getting an error on lines 9 and 10 of this simple program I'm trying to write. #include int main () { int a, b, c printf ( "Input 3 numbers" ); scanf ( "%d%d%d", &a, &b, &c ) a = a + b + c printf ( "Sum is %d", a); return 0; } Can anybody help me with what is wrong? .