Forum: C Feb 10th, 2009 |
| Replies: 2 Views: 338 I got it worked i mised ',' in *point declaration
char *point[] {
"This is One",
"This is Two",
"This is Three",
};
But Now compiler is making warning but working absolutly correct |
Forum: C Feb 10th, 2009 |
| Replies: 2 Views: 338 Hi all,
I am trying to point a pointer to another pointer and just failed to get resultm here's my failed code,
char *point[] {
"This is One"
"This is Two"
"This is Three"
}; |
Forum: C Jul 9th, 2007 |
| Replies: 3 Views: 7,218 Hi all,
For my project I have to send data from dos computer to a IP address ( i.e 216.152.xx.xxx port 57.
I have no idea how to accomplish this task. PC is connected to internet. I can do this... |
Forum: C Jul 2nd, 2007 |
| Replies: 5 Views: 6,527 Thanks Aia,
I am not using C99 compiler. I am writing code for micro controller. I have very limited memory to accomplish task. snprintf is not working with my compiler. Is snprintf memory... |
Forum: C Jul 1st, 2007 |
| Replies: 5 Views: 6,527 Is it possible to convert Float or double in a string???
Any idea?? |