Search:

Type: Posts; User: Idan Damri

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. yes 3 is amust have one before the practical one...

    yes 3 is amust have one before the practical one .

    i saw that data mining is also good. but there're more interesting things for my needs.
  2. i didnt write all the courses . i wrote only the...

    i didnt write all the courses . i wrote only the one i choosed. here i will write all of them :
    - Object-Oriented Programming (using smalltalk in the squeak environment )
    - Essentials of...
  3. number one is a must have course. i really...

    number one is a must have course.
    i really wanted to take java far as i can but i deduce that it maybe not be what i think it is . depend on many things like the course topics and more.

    what do...
  4. i understand, well written and explained....

    i understand, well written and explained.
    there're no more courses considering java. i have the regular java course. but other than that i have no other option for java.so basically i can learn the...
  5. why advanced java programming sounds dubious ?...

    why advanced java programming sounds dubious ?
    and i will take all of them.
    except the very last two . this is why i asked maybe to take the compilers course instead something i wrote above.
  6. what courses should i may consider to change ?

    i'm starting computer science. 3-4 years degree. this is what i choosed:
    1.data structures and algorithms
    2.introducing to computer science and java programming
    3.Database System Concepts...
  7. should i always write a constructor for a class?

    I know that visual studio do this for me as a default.
  8. Yes. Thank you both

    Yes.
    Thank you both
  9. Whats are the differences from my code and what...

    Whats are the differences from my code and what you wrote? What do you mean by saying that the code is not easy to follow?
    Im trying to understand..thanks
  10. Replies
    5
    Views
    812

    I find a way to just copy tge string to another...

    I find a way to just copy tge string to another buffer if its sees double spaces.
    Theres a function for deleteing a character?
  11. i understood the code. expect one thing

    //if you wrote a string with a number of spaces then this code reduce it to one space only between words.
    i marked with a comment the part i didnt understood.

    #include <stdio.h>


    int main()...
  12. Replies
    5
    Views
    812

    my code for string spaces

    i have this string - "idan damri is here"
    there're many spaces . so i tried to wrote a code that make it normal.
    "idan damri is here "

    its working but not as expected.


    #include...
  13. Replies
    21
    Views
    6,942

    Yes. I see... Thanks a lot.

    Yes. I see...
    Thanks a lot.
  14. Replies
    21
    Views
    6,942

    first of all . thanks for helping. second. i did...

    first of all . thanks for helping.
    second. i did this and the ouput was still not 4x4

    this is how it look :
    3189
    7121410
    015110
    10151
  15. Replies
    21
    Views
    6,942

    i've tried to put it everywhere and it didnt...

    i've tried to put it everywhere and it didnt work.
    for a 4x4 array its prints me 6 rows and then 4 rows and then 7 rows.and then 2 rows ...
    its never prints me:
    ----
    ----
    ----
    ----
  16. Replies
    21
    Views
    6,942

    i got this code and its working. but as 16...

    i got this code and its working.
    but as 16 straight numbers . if i want it to add a new line every 4 digits. and so it will be 4x4 array.


    #include <stdio.h>
    #include <stdlib.h>
    #include...
  17. Replies
    21
    Views
    6,942

    but it all doesnt really matter because **board,...

    but it all doesnt really matter because **board, or *board, or board[0] are all 4 bytes in size.
    and i tried what you wrote before. it wont change something accept now its print only the columns. ...
  18. Replies
    21
    Views
    6,942

    when i wrote &board it was by mistake . ok i will...

    when i wrote &board it was by mistake . ok i will apply what you said and i will reply in couple of minutes
  19. Replies
    21
    Views
    6,942

    yes.. ok i understood. i have 2 problems. you...

    yes.. ok i understood.
    i have 2 problems. you may read the code below first.
    1) for example if the user input is 4 . the output will be 7-8 rows and 4 columns. and i want it to be identical 2d...
  20. Replies
    21
    Views
    6,942

    Why you wrote 42? If the user will want to input...

    Why you wrote 42? If the user will want to input an 4x4 2d array?

    And i know that in the collage i will learn they use visual studio 2012.
    So theres no point for me now to use gcc for c 99. Or...
  21. Replies
    21
    Views
    6,942

    I have the latest visual studio compiler.

    I have the latest visual studio compiler.
  22. Replies
    21
    Views
    6,942

    how to create an user input for 2D array

    if i want the user to input (via 'scanf' i guess) a number .
    lets say 4.
    and then the computer will build a 4x4 board.
    and after i will want to add elements to the array.

    i tried a way to...
  23. Replies
    8
    Views
    896

    what this recursive function does ?

    void dosomething(int a){
    if (!a) return;
    dosomething(a >> 0x1);
    printf("%d\",(a & 0x1));

    //giving that int a is a positive number
  24. Replies
    10
    Views
    10,023

    why is int 0xFFFFFFFF is -1 ?

    can someone make it clear for me please ?

    if i say


    int a = 0xFFFFFFFF;
    unsigned int b = 0xFFFFFFFF;

    printf("a = %d, b = %u" , a,b);
  25. why there's a difference between the 'while' and 'if' in this code

    this code is showing the min value .
    with the while loop its working fine- the min is 2
    if you replace the 'while' with 'if' the min is 33 which is wrong.

    i tried to write myself the...
Results 1 to 25 of 27
Page 1 of 2 1 2