scanf() function

Status
Not open for further replies.

tuxfan

Technomancer
They don't return values, they perform something. In other programming languages, there are 2 types of sub-routines - procedures and functions. In C there are only functions. So some of the functions behave like procedures and don't return anything.
 

vignesh

Wise Old Owl
They dont return values.they are predefined functions belonging to the stdio.h header file.They take input or printf somethng on the screen
 

NikhilVerma

Padawan
What are you guys doing !
printf DOES return a value !!!!!


Check this declaration.... If you want take a look in the C++ help...

Code:
 int printf  (              const char *format [, argument, ...]);

It returns the length of displayed character's ... including ....
 

ten24bytes

asia://india/ka/bangalore
NikhilVerma said:
What are you guys doing !
printf DOES return a value !!!!!

Yeah I whole-heartedly agree with Nikhil. Good, you showed the others the right path!
Hunh! And there are Brainiacs in here!!!
 
Status
Not open for further replies.
Top Bottom