Search:

Type: Posts; User: Dr.Paneas

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    2,872

    Thanks for the quick reply Tim.

    Thanks for the quick reply Tim.
  2. Replies
    4
    Views
    2,872

    size_t or unsigned int

    I wanted to know what's the diff between unsigned int and size_t. To make my point clear to you, I 've already tried to sizeof both types, but they both returned the same size. One more thing, I've...
  3. Replies
    19
    Views
    3,807

    Well I made a post at my blog clarifying things...

    Well I made a post at my blog clarifying things pretty much :D
    Why do I have to use cin.ignore(); ? | Dr.Paneas Blog
  4. Replies
    19
    Views
    3,807

    At last,I think I figured it out :D Extracts...

    At last,I think I figured it out :D

    Extracts characters from the input sequence and discards them.
    The extraction ends when n characters have been extracted and discarded or when the character...
  5. Replies
    19
    Views
    3,807

    Nope, ignore(80) doesn't make my day :p the...

    Nope, ignore(80) doesn't make my day :p
    the program hangs up and waiting until Ctrl+C is pressed manually by the user.

    From Wikipedia: "many programming languages treat carriage return and line...
  6. Replies
    19
    Views
    3,807

    with ignore version: [drpaneas@fedora...

    with ignore version:



    [drpaneas@fedora Debug]$ ./cprogram1
    Insert the value of x: 4 7
    Insert value y: X multiple Y equals in 28


    it's the same :/
  7. Replies
    19
    Views
    3,807

    [drpaneas@fedora Debug]$ ./cprogram1 Insert the...

    [drpaneas@fedora Debug]$ ./cprogram1 Insert the value of x: 4 7
    Insert value y: X multiple Y equals in 28
  8. Replies
    19
    Views
    3,807

    Why I have to cin.ignore() ?

    Hello there



    #include <iostream>


    using namespace std;
  9. Replies
    2
    Views
    3,116

    I am trying to compile this : #include...

    I am trying to compile this :



    #include <windows.h>
    #include <stdio.h>
    #include <psapi.h>
    #pragma comment(linker, "/DEFAULTLIB:psapi.lib")

    void PrintMemoryInfo( DWORD processID )
  10. Replies
    2
    Views
    3,116

    How can I see the available memory ?

    Hello my dear friends

    I want to write a simple C++ program that returns 2 things:
    Used Memory
    Free Available Memory

    The reason I am doing this, is because I want to avoid the use of Task...
  11. Replies
    4
    Views
    1,288

    Thank you Daved :)

    Thank you Daved :)
  12. Replies
    4
    Views
    1,288

    Two name into one string variable problem

    Hello my friends, I'm Panos and this is my first post here in CBoard Forums :D

    Take a look to my C++ code:



    #include <iostream>
    #include <string>

    int main()
Results 1 to 12 of 12