ERJAN KENJEGALEE
unread,Feb 12, 2012, 1:50:55 PM2/12/12You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
so in my gcd.wlpp file
i should have this:
int wain(int, int);
void println(int);
// === Insert WLPP Program Here ===
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char** argv) {
.................................................. stuff here
}
void println(int x){
printf("%d\n",x);
}
------------------
now my question:
can i have instead of void println , int myfunction() ..........?