answersLogoWhite

0

Hiii,

scanf() is an predefined function of C to getting runtime input from the user.

Syntax:-

scanf("sequence specifier",&variable_name);

example:-

#include

void main()

{

int number;

printf("\n Enter any number"); //message to user

scanf("%d",&number); //getting input from user

printf("\n entered number is %d",number); // display

getch();

}

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

Scanf function in c for strings?

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


What is difference between scanf and cin?

scanf is a function (available in C and C++)cin is an istream object (C++ only)Advice: when in doubt, use fgets+sscanf


What happens by the scanf statement in c?

It's a function, not a statement. Use your help system to find out its purpose.


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.


How do you read a character from the keyboard and will store it in the variable?

Use the scanf() function from the C standard library.


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]);


How do you give input at run time in c?

Usually by using the scanf function


Which function is used to read data from the console?

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


What is standard library function in c?

The Standard Librarary Function in C is printf,scanf inf Standard input output header.. which is stdio.h.


What is return type of scanf function?

Use the help/manual.


Why do you use scanf in c?

To read input from standard input.