No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Re: modify the function prototype to [CODE] int countchar(const char[], char); [/CODE] | |
I have been a C/C++ programmer for 4 years now, and now that I'm actually reading a tut on it, I have to say, I am impressed! The whole concept of the DS really is cool; and it's flexability is the best I have seen. While I was reading one … | |
How would I execute a C/C++ program without using a windows library? (Like ShellExecute) | |
I have tried to assemble the following code in TASM and Flat Assembler, but they both give an error for every line of code. What is going on? How can I get the assemblers to assemble the * code?? Thanks for any help you can provide. [code] [BITS 16] [ORG … | |
Re: Lerner, he may be asking [U]how[/U] to validate it. If so you somewhat like this [CODE] BOOL IsNumber(char szString[]) { for(i = 0; szString[i] != 0; i++) { if(szString[i] >= '0' && szString[i] <= '9') { // This carachter is number. } else return FALSE; // This one ain't, your … | |
Re: jw is "just wandering" right? Without system("pause");, your program will end right after printing your final text, so you won't have any time to read the text before is closes, if you where in DOS rather than in a consol, you wouldn't have to worry about this. You can use … | |
Re: Connection? Like so:? [code]DWORD dwVal; BOOL bInternetExists = InternetGetConnectedState(&dwVal, 0); while(bInternetExists != TRUE) Sleep(100); // Do upload! [/code] | |
|
The End.