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
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. max characters of an array of char

max characters of an array of char

Scheduled Pinned Locked Moved C / C++ / MFC
data-structuresquestion
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    Trankil
    wrote on last edited by
    #1

    Hi ! I have declare an array of characters like this : char lStr[255]; But , i want to declare a bigger capacity of this array . So i want to kow the maximum characters, i can declare in a array of characters ? :)

    D J 2 Replies Last reply
    0
    • T Trankil

      Hi ! I have declare an array of characters like this : char lStr[255]; But , i want to declare a bigger capacity of this array . So i want to kow the maximum characters, i can declare in a array of characters ? :)

      D Offline
      D Offline
      David Crow
      wrote on last edited by
      #2

      It'll be governed by the size of the stack, which I think defaults to 1MB.


      "Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain

      "There is no death, only a change of worlds." - Native American Proverb

      1 Reply Last reply
      0
      • T Trankil

        Hi ! I have declare an array of characters like this : char lStr[255]; But , i want to declare a bigger capacity of this array . So i want to kow the maximum characters, i can declare in a array of characters ? :)

        J Offline
        J Offline
        Joe Woodbury
        wrote on last edited by
        #3

        I suggest using vector or, if in MFC, CArray. Both use the heap, instead of stack, and maintain the count. Option 2 is to simply use: char* pStr = new char[255]; But make sure you delete it when you got out of scope (or use a smart pointer class.) Anyone who thinks he has a better idea of what's good for people than people do is a swine. - P.J. O'Rourke

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

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