Functions Flashcards

1
Q

puts( )

A

The puts() function in C is used to output a string to the standard output (typically the console) followed by a newline character (\n). It is defined in the <stdio.h> header file.</stdio.h>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

rand()

A

The rand() function in C is used to generate pseudo-random integers. It is defined in the <stdlib.h> header file. This returns a pseudo-random integer in the range 0 to RAND_MAX, where RAND_MAX is a constant defined in <stdlib.h> (usually 32767). Without seeding, the sequence of numbers is the same every time the program is run.</stdlib.h></stdlib.h>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

srand()

A

Use srand() to seed the random number generator witha. starting value (e.g., srand(time(Null));).

For numbers in a specific range, use:
int random_number = rand() % (upper - lower +1) + lower;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly