Search:

Type: Posts; User: csvraju

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    2,047

    function overriding

    can any body please explain me the concept of function overriding in C++????
  2. Replies
    4
    Views
    2,286

    its not taking the inputs properly and i know...

    its not taking the inputs properly and i know using a temp is enough but its the requirement thats says not to use any typeof temporary variable
  3. Replies
    4
    Views
    2,286

    problem with reading characters

    can any body tell me why this code is not reading the characters properly


    #include <stdio.h>
    void swap(void *,void *,int );

    int main()
    {
    int num1,num2;
    char c1,c2;
  4. Replies
    17
    Views
    9,053

    can we use bitwise operators on float variables

    can we use bitwise operators on float variables
  5. Replies
    17
    Views
    9,053

    swapping pointers

    how can we swap pointers with out using a temporary variable
  6. Thread: Ragged Array

    by csvraju
    Replies
    5
    Views
    4,304

    yes the first line has a typo its actually...

    yes the first line has a typo its actually 43,6,9...........

    my command line i mean we have to take some input ............in such case we read it........so how do we take inputs for a ragged array
  7. Thread: Ragged Array

    by csvraju
    Replies
    5
    Views
    4,304

    Actually a ragged array is a two dimensional...

    Actually a ragged array is a two dimensional array in which the elements in the rows is not same.

    here is a sample input how it should be read
    43.6.9
    90
    45,1,21
  8. Thread: Ragged Array

    by csvraju
    Replies
    5
    Views
    4,304

    Ragged Array

    How do we take the inputs for ragged arrays from command line.......??
  9. Thread: Void Pointers

    by csvraju
    Replies
    7
    Views
    3,781

    the problem is solved

    the problem is solved
  10. Thread: Void Pointers

    by csvraju
    Replies
    7
    Views
    3,781

    ok i got it.......

    ok i got it.......
  11. Thread: Void Pointers

    by csvraju
    Replies
    7
    Views
    3,781

    using void pointers we can increment the value of...

    using void pointers we can increment the value of char and integers .......


    but i am not able to increment the value of a float variable
    #include <stdio.h>

    int main()
    {
    int i=10;
    ...
  12. Thread: Void Pointers

    by csvraju
    Replies
    7
    Views
    3,781

    is the declaration correct for type casting a...

    is the declaration correct for type casting a void pointer

    *(char *)vptr;

    (*(char *)vptr)++; will the void pointer increment
  13. Replies
    18
    Views
    5,519

    i am very sorry for that............my...

    i am very sorry for that............my apologies...........i am new to the forum and i dont know how to start a new thread...........please help me in doing so..............i will be very thankful
  14. Thread: Void Pointers

    by csvraju
    Replies
    7
    Views
    3,781

    Void Pointers

    Can the pointer arithmetic be done on the void pointer? If not, what to do when void pointer is having the
    address of some integer or other data type and we want to increment it?
Results 1 to 14 of 14