Search:

Type: Posts; User: arvindkr

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    855

    Pointers

    See, when u use the following

    int iAge = 20;
    int * pAge = &iAge;

    u r first creating a variable named iage. As pointers can store memory addresses so the pointer pAge is storing the memory...
  2. Replies
    4
    Views
    3,532

    Need a Code to display .jpg files

    I am using Turbo C++, as IAM just a beginner.
    Well, I require a code that can help me display .jpg , .bmp files
    can any body give me ??
  3. hey, even if u use an array, then u can use this...

    hey, even if u use an array, then u can use this code:

    #include<iostream.h>
    void main()
    {
    int array[100];
    // 1008 is for the maximum no of the numbers that user can enter
    int n;
    cout<<"Enter...
  4. Replies
    0
    Views
    926

    Need Help for an algorithm.....

    I wish to create a textbox in Turbo c++ which I am doing right now.
    The Textbox must be such that it may be used to edit the text in it. Although I 've created a text editor, but I 've miserably...
  5. Plz Tell me how to Read Characters like Key UP, Key Down

    Please Help me:
    I am creating a project; where I need a line text editor
    Here,
    I am using:
    int a=bioskey();
    however It returns different values 4 different keys. So I 've to check the value of...
Results 1 to 5 of 5