Forum: C++ Mar 3rd, 2009 |
| Replies: 6 Views: 820 try something along the lines of itoa which should allow you to use base 2 to convert it to binary
it would look like so: itoa(temp, chararray, 2) |
Forum: C++ Mar 3rd, 2009 |
| Replies: 2 Views: 665 I have changed it to char *username = "rgfirefly24" and char *password = "12345678" However the 12345678 still will not add to the char sendbufffer[1024].
changed my for loops to strcat and it... |
Forum: C++ Mar 3rd, 2009 |
| Replies: 2 Views: 665 So i have the following code:
//main program
char username[15] = {'r','g','f','i','r','e','f','l','y','2','4'};
char password[9] = {'1','2','3','4','5','6','7','8'};
... |