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)
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 specifier | Type of value |
---|---|
%d | Integer |
%f | Float |
%lf | Double |
%c | Single character |
%s | String |
%u | Unsigned int |
%ld | Long int |
%lf | Long double |
Thank you for your valuable feedback