vote up -1 vote down star

i want to build an app in c lang through which i can send messages over wifi network...(it will be good if someone provide me the code in c)....thanks in advance:)

flag
how much vaguer can it get?? – jldupont Nov 7 at 12:53
You might want to explain where you are up to, and which particular issues you're having. As it stands this questions is too general. – PaulG Nov 7 at 12:53
You might want to update this question with a lot more information, its in danger of being closed shortly. – Tim Post Nov 7 at 12:55

closed as not a real question by Kinopiko, DigitalRoss, Tim Post, pmg, Ólafur Waage Nov 7 at 12:56

1 Answer

vote up 0 vote down

I suggest you to check the Net Send command, then you can use it like this in C:

#include <stdio.h>

int main(void)
{
    system("net send");
  return 0;
}

Also check the Wikipedia article to see more about the arguments of this program.

link|flag
system() is declared in <stdlib.h>. – pmg Nov 7 at 13:05

Not the answer you're looking for? Browse other questions tagged or ask your own question.