2010/2/19 Zyle Moore <[email protected]>:
> int main(int argc, *char argv[]) {
>
> }//compiler says i'm missing a '}'

The asterisk is at the wrong side of 'char'.

int main(int argc, char *argv[]) {
   // your main() code
}

Regards, Krzysztof
_______________________________________________
gtkmm-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/gtkmm-list

Reply via email to