Search:

Type: Posts; User: hr1212s

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    6,208

    reference is work like constant pointer ,so all...

    reference is work like constant pointer ,so all advantages of return by pointer works.
  2. Replies
    6
    Views
    1,039

    dude read this Tower of Hanoi - Wikipedia, the...

    dude read this
    Tower of Hanoi - Wikipedia, the free encyclopedia
  3. Replies
    6
    Views
    1,039

    1st for(count=1;count

    1st
    for(count=1;count<=5;++count) ; is same as for(count=1;count<=5;++count){}
    no semicolon required
    2nd
    find its explanation on Google.
  4. Thread: Free memory.

    by hr1212s
    Replies
    5
    Views
    1,125

    if you look at the memory allocation of process,...

    if you look at the memory allocation of process,
    there are 2 areas 1)permanent storage area where program code and global variables are stored 2)this area is shared by stack and dynamic memory...
  5. Replies
    11
    Views
    1,298

    apple's product are always innovative....

    apple's product are always innovative.
    microsoft's product looks like modification to their old version with fancy gui.
    it is just my opinion.
  6. you are printing "unsigned long" for double use...

    you are printing "unsigned long"
    for double use "double"
    well if you consider "1" in 8 bit system it looks like 0 0000001
    first 0 indicates it is positive number 7 bits are for magnitude
    for "-1"...
  7. Thread: Free memory.

    by hr1212s
    Replies
    5
    Views
    1,125

    might be you are talking about memory allocation...

    might be you are talking about memory allocation in heap.
    in many application you can't know how much memory is required in your program, for example library application.
    in this you cant know...
  8. it is example of diamond problem. are you saying...

    it is example of diamond problem.
    are you saying that diamond problem is a virtual path inheritance or it is any inheritance in which class is inherited with virtual keyword?
  9. Replies
    171
    Views
    17,289

    this is just new achievement . we are now able to...

    this is just new achievement . we are now able to modify our DNA structure to embed better qualities to human. research are done on some animals successfully.
    so there is no any destruction of man...
  10. anyone knows what is virtual path inheritance ?

    i have seen this word in interview question .
    i don't know if this kind of thing is existing or not. may be it is same as multiple path inheritance(diamond problem)!
  11. indent properly

    indent properly
  12. Replies
    2
    Views
    877

    is dhis e qestion?

    is dhis e qestion?
  13. Replies
    14
    Views
    3,871

    hey ,will you please give some idea about what...

    hey ,will you please give some idea about what -Wall and -pedantic does in code::blocks !
    i haven't find it on google.
  14. Replies
    14
    Views
    3,871

    oh thanks guys, during this i found link...

    oh thanks guys,
    during this i found link Anonymous Union
    which point to same conclusion that, this code is fine and error is bug of compiler
  15. Replies
    14
    Views
    3,871

    yes it gives me error

    yes it gives me error
  16. Replies
    14
    Views
    3,871

    it is simplified code, i'm using code::blocks...

    it is simplified code,
    i'm using code::blocks 8.02 . is it non standard thing or it's my compiler's fault?
  17. Replies
    14
    Views
    3,871

    segmentation fault ?

    if we construct anonymous static union ,at file scope my compiler(gcc) gives error:segmentation fault
    why this is so!


    static union{int a;};

    int main()
    {
    return 0;
    }
  18. Replies
    4
    Views
    1,595

    yes reference will definitely work , but I don’t...

    yes reference will definitely work ,
    but I don’t understand code tag ,EVOEx,will u please elaborate this.
  19. Replies
    4
    Views
    1,595

    How to resolve this error in c++?

    this code in c++
    #include <iostream>
    using namespace std;
    int main()
    { return 0; }
    struct X;
    struct Y;
    struct Y
    { X ox; };
    struct X
Results 1 to 19 of 20