Search:

Type: Posts; User: Gabi

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,061

    Problem with String length

    int main ()

    int strlen(char*s)

    {char *p = s;

    while (*p! = '/0');
    p++;
    return p - s;
  2. Thread: Image processing

    by Gabi
    Replies
    3
    Views
    1,325

    Image processing

    Hello fellowers

    I have been researching almost my whole semester about image processing, i have failed to get any information about it. Anyone of you fellowers help me with information of this. I...
  3. Thread: dynamic memory

    by Gabi
    Replies
    9
    Views
    1,237

    Hello Laserlight Thanks, is my answer look...

    Hello Laserlight

    Thanks, is my answer look alright for that code?
  4. Thread: dynamic memory

    by Gabi
    Replies
    9
    Views
    1,237

    dynamic memory

    I need help for this code, i tried many times but i couldn't get it working.

    Write C program fragnments to allocate dynamic memory for an integer array with 100 elements and then initialise each...
  5. Replies
    8
    Views
    1,193

    I need help for this code i tried but it could...

    I need help for this code
    i tried but it could give me what i want

    what does the following function do?

    int main(void)
    int fx(char *s) {
    int i;
    while (*s!= '\0') {
    s++;
  6. Replies
    8
    Views
    1,193

    what is mean by code tag?

    what is mean by code tag?
  7. Replies
    8
    Views
    1,193

    for loop and while loop

    I need help for this code
    i tried but it could give me what i want

    what does the following function do?

    int fx(char *s) {
    int i;
    while (*s!= '\0') {
    s++;
    i++;
  8. write a C program named reverse that will print the argument in reverse order

    I need help how write reverse function e.g reverse 1 3 5 7 9
    will create the following output
    9 7 5 3 1
    I confused, i can use string or integer for my code?
Results 1 to 8 of 8