Search:

Type: Posts; User: prathiksa

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    1,513

    in my machine it prints 7 6 8

    in my machine it prints 7 6 8
  2. Replies
    7
    Views
    1,513

    yes,the correct one is printf("%d %d %d...

    yes,the correct one is
    printf("%d %d %d \n",a++,a++,++a);
  3. Replies
    7
    Views
    1,513

    int a = 5; printf("%d %d %d\n", a + 1, a + 2, a...

    int a = 5;
    printf("%d %d %d\n", a + 1, a + 2, a + 3);
  4. Replies
    7
    Views
    1,513

    pre and post increment

    int a = 5;

    printf("%d %d %d \n",a++,a++,++a);



    it prints 7 6 8

    im using gcc compiler,
    how it evaluates....
  5. Replies
    2
    Views
    1,354

    command line arguments

    how to populate a structure in command line arguments

    so,

    struct
    {
    ---
    ---
    }
    int main(int argc,char**argv)
  6. Replies
    2
    Views
    1,374

    array initialization

    i have two c files
    in the first file i have declared and initialised an array and i need to use the array in my second file also,how to use the same array in my second file......
  7. Replies
    5
    Views
    1,561

    sorry its array[i]

    sorry its array[i]
  8. Replies
    5
    Views
    1,561

    i need to write the function to copy the values...

    i need to write the function to copy the values of the array from one to another
  9. Replies
    5
    Views
    1,561

    copying the arrays

    i want to fill the static values of the array into another array,its working fine,just want to know ,is this is right or any other method for copying the arrays..





    #include<stdio.h>...
  10. Replies
    5
    Views
    1,036

    wat about C,the same prodecure like c++ or we can...

    wat about C,the same prodecure like c++ or we can initialise
  11. Replies
    5
    Views
    1,036

    how to do initialisation then

    how to do initialisation then
  12. Replies
    5
    Views
    1,036

    array declarartion in c++

    it showing error when i declare an static array


    fun(int array1[],int array2[])
    {
    array1 [] = { 12,3,5,3,2,7,3,
    7,6,4,3,2,1,1};

    array2 [] ={ 2,3,5,3,2,7,3,
    ...
  13. Replies
    8
    Views
    15,129

    im just checking the syntax errors i have...

    im just checking the syntax errors
    i have initialised int last = n-1;
    int *l ;
    l = &last;
  14. Replies
    8
    Views
    15,129

    still the same error,i think may be its due to...

    still the same error,i think may be its due to types of the integer variable and float arrays
  15. Replies
    8
    Views
    15,129

    array subscript is not an integer

    im getting the error when compiling the code...


    float array[20];
    int last;
    array[last[array]];
    how to get red of this
  16. Replies
    8
    Views
    1,948

    oooh again it showing errors i need to assign...

    oooh again it showing errors
    i need to assign the image1 size to image2
    but it says
    height in something not a structure or union
    width in something not a structure or union
    -------------
  17. Replies
    8
    Views
    1,948

    thanks,i fix it no error

    thanks,i fix it
    no error
  18. Replies
    8
    Views
    1,948

    it says height in something not a structure or...

    it says height in something not a structure or unoin
  19. Replies
    8
    Views
    1,948

    thanks,but it still says incompatible types when...

    thanks,but it still says
    incompatible types when assigning to type VALUES from type void*
  20. Replies
    8
    Views
    1,948

    Error in malloc

    i started learning c,i know malloc is for dynamic allocation but i dont know how to use with structure,using the image1 parameters i have to allocate space in memory
    //it showing error "incompatible...
  21. Replies
    14
    Views
    2,977

    one more question how to change the size of an...

    one more question
    how to change the size of an array replacing redim
  22. Replies
    14
    Views
    2,977

    thanks

    thanks
  23. Replies
    14
    Views
    2,977

    now image_a copies the entire image_b right?

    now image_a copies the entire image_b right?
  24. Replies
    14
    Views
    2,977

    it is accessed linearly in ordinary array ...

    it is accessed linearly in ordinary array
    array[289];
    have an already loaded image
    after some manipulations going to write the image (from picture 1 to picture 2)
    i just want a function to...
  25. Replies
    14
    Views
    2,977

    picture1,picture2 as picture

    picture1,picture2 as picture
Results 1 to 25 of 33
Page 1 of 2 1 2