Re: what is the differrence b/w the usage or return and the exit in the C programming..



Kenny McCormack wrote:

Next question:
what is the differrence b/w the usage of [the] printf and the gets in the C
programming..?

What is b/w? Black and white?

What is the difference b/w a deposit and a withdrawal?

Printf prints a formatted string to a standard output, gets reads a string from a standard input. Do not use gets, as it provides absolutely no control against buffer overflow. Use fgets instead.
.



Relevant Pages