Search:

Type: Posts; User: kishore

Search: Search took 0.00 seconds.

  1. Replies
    18
    Views
    2,167

    It works on TurboC++ 3.0 which uses a temprory...

    It works on TurboC++ 3.0
    which uses a temprory variable if the types of the variable and its reference don't match...........
  2. Replies
    6
    Views
    1,334

    Did You Try exit(1);

    Did You Try


    exit(1);
  3. Replies
    18
    Views
    2,167

    I threw away that book today......... it was...

    I threw away that book today.........

    it was named "Let Us C++" by Yeshwank Kanitkar
    the guy who wrote "Let Us C"
    this guy uses TurboC++ and BorlandC++
    he is a well known writer of books on C &...
  4. Replies
    18
    Views
    2,167

    Its in a book which says it will work and the out...

    Its in a book which says it will work and the out put is 10 10 10 20
  5. Replies
    18
    Views
    2,167

    Modifying reference to a const

    Will tis program work.............
    Itried to compile it with g++ and it didn't work



    #include<iostream.h>
    int main()
    {
    const int i = 10;
    int &j = i;
  6. Replies
    2
    Views
    1,440

    default Arguments

    for the function having prototype....

    void fun(int = 10, int = 20, int = 30, int = 40);

    how to make sure that when it is called with two arguments
    such as.....

    fun(1, 2);

    these two are...
Results 1 to 6 of 6