Search:

Type: Posts; User: sPiKie

Search: Search took 0.04 seconds.

  1. Replies
    7
    Views
    1,157

    Using Zach L. stuff is probably the easist. Using...

    Using Zach L. stuff is probably the easist. Using atoi(); to convert over to an integer again :).
    Example usage of atoi():


    char buffer[] = "142525";
    int intBuffer;
    intBuffer = atoi(buffer);
    ...
  2. Replies
    10
    Views
    1,757

    Mhm, First off all.. Easiest way for a beginner...

    Mhm, First off all.. Easiest way for a beginner is just to study how the Google requests work as jinx made a good example off. Then when you know the basics, only to search normal as you wanted. You...
  3. Replies
    11
    Views
    1,843

    hmm, you can always use GetTickCount() (This...

    hmm, you can always use GetTickCount() (This function retrieves the number of milliseconds the system has been running, excluding any time that the system was suspended.) ('windows.h'/'winbase.h').....
  4. Replies
    14
    Views
    3,625

    On the top, before int main(), or you can take it...

    On the top, before int main(), or you can take it at the boun, and make a prototype at the global declare place, where you include headers/libaries etc.. Should look like this:
    char *stoupper(char...
  5. Replies
    14
    Views
    3,625

    Here is just a simple function I wrote: ...

    Here is just a simple function I wrote:


    void convertToUppercase(char *sPtr)
    {
    while (*sPtr != '\0') { // current character is not '\0'

    if(islower(*sPtr)) { //if character is...
Results 1 to 5 of 5