Search:

Type: Posts; User: mfm12002

Search: Search took 0.01 seconds.

  1. Replies
    14
    Views
    12,477

    the problem is that when i print the matrix i...

    the problem is that when i print the matrix i created it looks like this
    3343534636346455634564563456
    5643654564353245532..........
    it looks like i didn't scaned the user's input or the matrix i...
  2. Replies
    14
    Views
    12,477

    i don't want to print the matrix with spaces. The...

    i don't want to print the matrix with spaces. The user gives me a input the looks like
    2 0 1
    3 4 5
    7 4 3
    and i need to scan it and put each numberin the proper place in the matrix.
    the question...
  3. Replies
    14
    Views
    12,477

    first of all thanks for helping :) but for some...

    first of all thanks for helping :)
    but for some reason i can't outcome the user input. he is typing something like a mention earlier but in the way i did it, it only scan the first number and put it...
  4. Replies
    14
    Views
    12,477

    i'll show you what i was thinking of, tell me if...

    i'll show you what i was thinking of, tell me if i'm the right way:


    void main(){
    int i,int j, row, col,num,mat[100][100];
    printf("Enter dimensions (height,width) of matrix:\n");...
  5. Replies
    14
    Views
    12,477

    I'll show you how the proggrram should look like...

    I'll show you how the proggrram should look like on the screen:

    Enter dimensions (height,width) of the matrix:
    4 5
    Enter the matrix:
    -3 1 -4 2 -5
    3 5 -8 8 10
    6 -5 20 -3 4
    -7 3 2 16 -5
  6. Replies
    14
    Views
    12,477

    I need to create a matrix that looks like the...

    I need to create a matrix that looks like the user input. the just enter the example i showed above of how the matrix should look, and i need to scan it and put it in an actuall matrix i create by...
  7. Replies
    14
    Views
    12,477

    Putting numbers in a Matrix.

    hello,

    I want to build a function in C that create a matrix with values of number in it.
    the user's input is the dimensions of the matrix (height and width) and then he is entering the matrix....
  8. Replies
    4
    Views
    1,287

    יפה, בדיוק אותה שאלה לשנינו :) מי זה??

    יפה, בדיוק אותה שאלה לשנינו :)
    מי זה??
  9. Thread: Linked Lists

    by mfm12002
    Replies
    3
    Views
    1,399

    This was the same algorithem I tried to use but I...

    This was the same algorithem I tried to use but I have a problem to translate it to C code...
    Indeed it's an akward way for what the function should get but this is the assigment, to use excaly the...
  10. Thread: Linked Lists

    by mfm12002
    Replies
    3
    Views
    1,399

    Linked Lists

    Hello!

    I got anassigmnet in linked lists and I need your help please.

    In this assignment, we deal with students that register
    to courses. We keep lists of students and lists of courses,
    where...
  11. Replies
    1
    Views
    798

    Another little question...

    I tried to complete this but i have no idea what to put there :(
    the reverse input is a positive number and it's output is the reversed number, i need to complete 1,2,3 :



    int reverse(int num)...
  12. Replies
    4
    Views
    1,269

    Little question about structures...

    Hello,

    sorry if this seems like a trivial query but I was having some issue setting a string to a char array in a structure. I have a set up like this:


    Code:


    struct Computer
    {
Results 1 to 12 of 12