Search:

Type: Posts; User: sundarkms; Keyword(s):

Search: Search took 0.00 seconds.

  1. Answers
    4
    Views
    7,762

    Memory allocation

    What is the difference between C dynamic memory allocation, C++ dynamic memory allocation and Java memory allocation?
  2. Answers
    34
    Views
    53,513

    Re: What is the abbrevation of OOPS?

    this is the correct answer i am looking for this answer thank you
  3. Thread: oops

    by sundarkms
    Answers
    9
    Views
    12,983

    Re: oops

    overriding is concept which undertakes in inheritance, its used by the keyword virtual. when virtual keyword is used before a function that can be redefined anywhere where it is inherited. if virtual...
  4. Answers
    1
    Views
    8,062

    C Program Logic Question

    #define f(g1,g2) g1##g2
    main()
    {
    int var12=100;
    printf("%d",f(var,12));
    }

    this prints the output 100. and if i change the value in f(var,12) as f(var,13) a error is coming and if i delete #...
  5. Thread: c++

    by sundarkms
    Answers
    3
    Views
    3,347

    c++

    what is static or early binding and dynamic or late binding?
  6. Answers
    13
    Views
    5,315

    Re: Is this a correct statement

    it represents the address operator we can't initialize the memory address to the variable or a value of address to the pointer variable too we can give like this
    int *&num=12;
  7. Answers
    2
    Views
    11,483

    Re: Program for finding cubic root of a number

    main()
    {
    //read the value n;
    for(i=1;i<=n;i++)
    {
    a=i*i*i;
    if(a==n)
    cout<<"cubic root is "<<a;
    }
    }
Results 1 to 7 of 7
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact