Search:

Type: Posts; User: VasilP

Search: Search took 0.01 seconds.

  1. C: Spreadsheet Excel-like table implementation

    Hello, I have one theoretical question.

    I have a project (C language) where I implement multiple operations over a spreadsheet, that looks like this (and will be given in a .txt file):
    ...
  2. Replies
    1
    Views
    2,563

    Find Largest Number in File [array]

    I have a following code, where I tried to find out largest number from .txt file.
    In void function "maks" I successfully load numbers in array, variable "broj" is used to determine how many numbers...
  3. Replies
    4
    Views
    5,786

    /** * * structure Object * */ typedef...

    /**
    * * structure Object
    * */
    typedef struct {
    int id;
    char *name;
    } Object;

    /**
    * * Item of the list
  4. Replies
    4
    Views
    5,786

    Linked list task [C]

    Repl.it - SkyblueVioletredLocationI have a following code. It's linked list task with multiple functions.
    I got task with structures, specific functions to finish for working with Linked list and...
  5. Replies
    3
    Views
    6,731

    Input line

    Input txt has following structure:
    name
    number
    name
    number
    ...
    ...
    I managed to read it line by line, determine what is number and what name of a single person in structure. It works with...
  6. Replies
    3
    Views
    6,731

    Phone book C program - command line arguments

    I have a following code



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

    #define MAX_NAME (128)
  7. Replies
    1
    Views
    5,256

    Breaking out of a FOR loop

    for(int i=0; i<k; i++)
    bool matchName = matches (contact[i]. name, key);
    bool matchNum = matches (contact[i].number, key);

    if (matchName || matchNumber)
    printf("%s%s\n",...
Results 1 to 7 of 8