1.3 What is Printf and Scanf

Bablu
0

What is  Printf and  Scanf

Printf "stdio.h" header file में predefined function है, इस function का उपयोग करके, हम console or monitor पर डेटा या उपयोगकर्ता defined message  को प्रिंट कर सकते हैं। Printf () के साथ काम करते समय, यह किसी भी संख्या में argument  ले सकता है लेकिन पहला argument  double cotes("") के भीतर होना चाहिए और हर argument  को comma (,) के साथ अलग किया जाना चाहिए, जो भी हम पास करते हैं, वह उसी को प्रिंट करता है, यदि कोई format specifies होता है, तो वह type of value की copy बनाता है। monitor  के scientific नाम को console कहा जाता है।


Syntax

prinf("Format specifers",value1,value2,..);


scanf()


scanf() is a predefined function in "stdio.h" header file. It can be used to read the input value from the keyword.

Example of scanf function

int a;
float b;
scanf
("%d%f",&a,&b)
In the above syntax format specifier is a special character in the C language used to specify the data type of value.

Example of printf() and scanf()

#include <stdio.h>
#include <conio.h>

void main();
{
int a;
float b;
clrscr
();
printf
("Enter any two numbers: ");
scanf
("%d %f",&a,&b);
printf
("%d %f",a,b);
getch
();
}

Format specifier:

Format specifierType of value
%dInteger
%fFloat
%lfDouble
%cSingle character
%sString
%uUnsigned int
%ldLong int
%lfLong double

Post a Comment

0 Comments

Thank you for your valuable feedback

Post a Comment (0)
To Top