answersLogoWhite

0

What is scanF function?

Updated: 10/25/2022
User Avatar

Wiki User

10y ago

Best Answer

scanf() is an input function which reads input from the standard input devices such as keyboard.

Syntax:

scanf("Control Character",address_list);

where control character is a sequence of one or more character such as %d,%f,%lf,%lld. Address list specifies the variables, pointers etc.

e.g. scanf("%d",&num);

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is scanF function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you use scanf function within printf function?

Yes: double d; printf ("scanf's just returned %d\n", scanf ("%lf", &d));


Why not use the ampression symbol in scanf statement in function?

scanf is a function, not a statement. Example: int a; char name[12]; scanf ("%d %s", &a, &name[0]);


What is the syntax of scanf?

scanf: scanf is a built-in function to read input from the user.


What are the header file of scanf function?

stdio.h


Scanf function in c for strings?

Use '%s', eg: char name[64]; scanf ("%s", name);


What is return type of scanf function?

Use the help/manual.


Is there a function similar to the C plus plus scanf function in JavaScript?

Scanf is part of the C standard library. Although the C++ standard library includes 18 headers from the ISO C90 standard, their usage in C++ is deprecated. However, to answer the question, there is no equivalent to scanf in JavaScript.


What is the use of printf and scanf function?

Printf prints something to the standard output stream, and scanf inputs something from the standard input stream.


Which function is used to read data from the console?

The scanf() function in the <stdio.h> C standard library header.


Is scanf function follow the que or stack operation?

Your question makes no sense.


How do you give input at run time in c?

Usually by using the scanf function


What is the use of scanf function in c?

Hiii,scanf() is an predefined function of C to getting runtime input from the user.Syntax:-scanf("sequence specifier",&variable_name);example:-#includevoid main(){int number;printf("\n Enter any number"); //message to userscanf("%d",&number); //getting input from userprintf("\n entered number is %d",number); // displaygetch();}