Quote:
Originally Posted by byteit101
I don't know much about what you are doing, but I do know you have a error in this code, putsd is expecting a string, not a character, try putsd("h"); (double quote vs single quote) or putsd("h\0");
|
\0 is implied by "", so you don't need to put it. "test\0" will double null terminate the string, which isn't necessary.