I need a working code for a function that will return a random string with a random length.
What I want to do would be better described by the following code.
char *getRandomString()
{
char word[random-length];
// ...instructions that will fill word with random characters.
return word;
}
void main()
{
char *string = getRandomString();
printf("Random string is: %s\n", string);
}
For this, I am strictly forbidden to use any other include than stdio.h. Edit: This project will be adapted to be compiled for a PIC Microcontroller, hence I cannot use malloc() or such stuff. The reason why I use stdio.h here, is for me to be able to inspect the output using GCC.
Currently, this code gives this error.-
“warning: function returns address of local variable [enabled by default]”
Then, I thought this could work.-
char *getRandomString(char *string)
{
char word[random-length];
// ...instructions that will fill word with random characters.
string = word;
return string;
}
void main()
{
char *string = getRandomString(string);
printf("Random string is: %s\n", string);
}
But it only prints a bunch of nonsense characters.
malloc, caller mustfree). – pst Aug 25 '11 at 17:42stdio.his not a library, it is a header. Are you saying includingstdlib.his not allowed, hencemallocis not an option? – Prætorian Aug 25 '11 at 17:43homeworktag. What are your specific requirements? – David Thornley Aug 25 '11 at 17:47void main()is wrong. Useint main(void). Complain to the author of whatever book told you to usevoid main(). – Keith Thompson Aug 25 '11 at 17:50random-lengthis itrandomminuslength? orrandom_length, ie, a single variable. – phoxis Aug 25 '11 at 17:56