Search:

Type: Posts; User: kollurisrinu

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,190

    Diamond problem

    To resolve the Diamond problem,we have to use the virtual keyword while derive the classes.Can anybody explain what is happening when declare the virtula keyword?
  2. Replies
    6
    Views
    12,631

    why the C language is not allowing,is there any...

    why the C language is not allowing,is there any specific reason?
  3. Replies
    6
    Views
    12,631

    Static variable in structure

    Why can't we have static variables in the structure in C?


    Regards,
    Srinu.
  4. Replies
    6
    Views
    2,231

    Why size of the empty structure is 0 bytes...

    Why size of the empty structure is 0 bytes eventhough structure variable also have unique address?
  5. Hi Elysia, if u use...

    Hi Elysia,
    if u use strcpy(result,ptr->string) then u will see error that is

    error: âstruct kkâ has no member named âstringâ.
  6. Hi vlrk, in the getname function,you...

    Hi vlrk,
    in the getname function,you did not use the string pointer that is second argument.
    i want a output with the help of second argument.

    ...
  7. Regarding accessing the structure member

    Hi,
    please see the below code.




    struct kk
    {
    char a;
    char name[10];
  8. Replies
    26
    Views
    4,963

    i am trying to write a code that works on any...

    i am trying to write a code that works on any platforms using C-library functions but i am unable to implement .
  9. Replies
    26
    Views
    4,963

    Can't we write program without using windows APIs?

    Can't we write a program by using c-libray functions without using windows APIs?
  10. Replies
    26
    Views
    4,963

    Login program

    Hi,
    can anybody Write a program for Login that is while enter the password it should be print as * to corresponding character?






    Thanks in advance,
    srinivas k
  11. Replies
    1
    Views
    1,099

    Login program

    Hi,
    can anybody Write a program for Login that is while enter the password it should be print as * to corresponding character ?
  12. Difference between Enums and #define preprocessor

    Hi
    Can any one tell me the difference between preprocessor macros like
    #define and enum;
    If i want to define MAX_LIMIT=100 as preprocessor macro as

    #define MAX_LIMIT 100;
    or if i define
    enum...
  13. Replies
    6
    Views
    2,231

    Size of a Empty class

    Hi,
    Can anybody explain why size of a Empty class is 1 byte?
Results 1 to 13 of 14