Search:

Type: Posts; User: fouzimedfouni

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. was trying to do that :...

    was trying to do that : https://www.youtube.com/watch?v=17ZB8RaKPmM


    And never include a .c file! Create an associated header, with function declarations and whatever else you need, and include...
  2. previous declaration of 'xxxxx' was here

    I was trying to practice some example for STATIC KEYWORD, Any help , thank you in advance
    first file:

    #include<stdio.h>
    #include "Fouzi.c"
    int Max;

    maxvalue(){
    Max = 1;
    }
  3. Replies
    8
    Views
    1,141

    thank you so much ......I thought I fixed them...

    thank you so much ......I thought I fixed them the last time I modified the snippet!!
    thank you again
  4. Replies
    8
    Views
    1,141

    14040

    14040
  5. Replies
    8
    Views
    1,141

    tried it and it didn't work for me ....same result

    tried it and it didn't work for me ....same result
  6. Replies
    8
    Views
    1,141

    How ? and thank you

    How ? and thank you
  7. Replies
    8
    Views
    1,141

    undefined reference to `WinMain@16'|

    /*Enthusiastic
    Pessimism
    desensitize
    uniqueness
    */

    #include <stdio.h>
    #include <string.h>

    struct Books{
  8. got it : just added the asterisk in the function ...

    got it : just added the asterisk in the function


    printf(" a %i\n " ,*a);
    }
  9. that gives me the address of : &aaa and I want...

    that gives me the address of : &aaa
    and I want the value of : *aa
  10. I get that warning : passing arg 1 of `print_int_ptr' makes pointer from integer with

    #include<stdio.h>
    print_int_ptr(int *a){

    printf(" a %i\n " ,a);
    printf(" &a %i\n " ,&a);


    }
    my_scanf(int b){
    printf("enter you value here :");
  11. Replies
    5
    Views
    780

    is there any diagram to understand that better ,...

    is there any diagram to understand that better , I changed the assignment of act1 and ptr and I got it but i need more demonstration :), any diagram you recommend me to check out ?
    and thank you...
  12. Replies
    5
    Views
    780

    how can I use pointer to structer ?

    how can I call and print the Pointer : ptr->address


    #include<stdio.h>
    struct account
    {
    int address;
    int value;
    };
    typedef struct account act;
  13. Replies
    7
    Views
    676

    thank you so much :)

    thank you so much :)
  14. Replies
    7
    Views
    676

    tried that and worked #include void...

    tried that and worked
    #include<stdio.h>
    void add(int *c){

    *c = *c+1;
    };
    main()
    {
    int num1;
    num1 = 10;
  15. Replies
    7
    Views
    676

    an example please

    an example please
  16. Replies
    7
    Views
    676

    dont understand , need an example or the code...

    dont understand , need an example or the code debugged
  17. Replies
    7
    Views
    676

    whats the problem

    I tried to use pointer with a function but I guess I am missing out on something


    #include<stdio.h>
    int add(int *a,int *b){
    int *c,*d;
    *c = *c+1;
    *d = *d-1;

    };
  18. sorry for the confusion I caused by not indenting...

    sorry for the confusion I caused by not indenting my Code :)
  19. how to call a function that takes a STRUCT parameter

    I just want to call the function : outputboo(), but I dont know how


    /*Enthusiastic
    Pessimism
    desensitize
    uniqueness
    */

    #include <stdio.h>
  20. Replies
    8
    Views
    1,424

    camel-man...

    camel-man - whiteflags ..... thank you guys, I got it now :) working on the code source more :)
  21. Replies
    8
    Views
    1,424

    still does not answer my question

    still does not answer my question
  22. Replies
    8
    Views
    1,424

    which means ?

    which means ?
  23. Replies
    8
    Views
    1,424

    I moved the prototypes after the structure...

    I moved the prototypes after the structure definition and still getting the error (13|warning: parameter has incomplete type)
    and I changed main to :

    int main( ){

    return 0;

    }
    and still...
  24. Replies
    8
    Views
    1,424

    bunch of warnings

    hello guys, how are you,
    I got a small problem with my code, and I would love if somebody can walk me through it step by step and help me debug the code
    here is my code


    #include <stdio.h>...
  25. It looks like its the same for me :) , IS C++...

    It looks like its the same for me :) , IS C++ OOP ?
Results 1 to 25 of 61
Page 1 of 3 1 2 3