Hi everybody,

so I need to give this huge proyect on monday. Its a proyect that includes another 6 in it and i already did 5 and Im missing one witch im stuck with and I just cant anymore (have been working on it 24/7 since we receive the assigment) PLEASE SOMEBODY HELP!!

Ii need to write a program in c... (without pointers, malloc and all of it.. i can use functions and arrays and strings!...)

the program will receive a sentence and will print the same words in it. the definition for same words is if they have the same latter (no matter how many times each letter) without separating them (uppercase letters= lowercase letters)....

example...

Ana loves her naNa...

will print

Ana naNa
-------------------------------

please help somebody!!!

thanx so much for you time!!!

Hi everybody,

so I need to give this huge proyect on monday.

well, you better get busy.

i need to write a program in c

okay, here's a start:

#include <stdio.h>

int main(void)
{
    // start coding here


    return 0;
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.