Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

clydecraig

@clydecraig
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Web hosting recommendations
    C clydecraig

    I have been using Alentus for years and I am quite satisfied. They meet all your requirements. They are easy to work with. http://www.alentus.com

    The Lounge csharp database asp-net sql-server sysadmin

  • One of My Interview Questions Today
    C clydecraig

    (amended from previous post -- again) I don't have a c++ compiler on hand to prove it, but I think this code does the trick for single-byte character sets: void ReverseString(char* str) { char* end = strrchr(str, 0); while(str < --end) { *str ^= *end; *end ^= *str; *str++ ^= *end; } }

    The Lounge career

  • One of My Interview Questions Today
    C clydecraig

    (amended from previous post) I don't have a c++ compiler on hand to prove it, but I think this code does the trick for single-byte character sets: void ReverseString(char* str) { char* end = strrchr(str, 0); while(str < --end) { *str ^= *end; *end ^= *str; *str++ ^= *end--; } }

    The Lounge career

  • One of My Interview Questions Today
    C clydecraig

    I don't have a c++ compiler on hand to prove it, but I think this code does the trick for single-byte character sets: void ReverseString(char* str) { char* end = strrchr(str, 0); while(str < --end) { str ^= end; end ^= str; str++ ^= end--; } }

    The Lounge career
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups