Search:

Type: Posts; User: saikumar029

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,402

    Thank you I worked on some examples I came to...

    Thank you
    I worked on some examples
    I came to know that function overloading in c++ not depend on return type
    only on parameters order, size & there type.
  2. Replies
    4
    Views
    1,402

    Function overloading

    Is Function overloading depends on return type of an function in c++? explain me with example please
  3. yes i got it I as to declare it as static /...

    yes i got it
    I as to declare it as static / dynamic
    Thank you
  4. please help me i trying to print array elements but it printing some junk values

    please help me i trying to print array elements but it printing some junk values

    #include<stdio.h>
    #include<conio.h>
    int *fun()
    {
    int i[]={1,2,3,4,5};
    return &i[0];
    }
    void main()
Results 1 to 4 of 4