In C language programs, one of the essential operations is to get input for program and send output produced by the program to a output device. There are many functions available in ‘C’ language which perform i/o operations. These functions are collectively called standard Input/Output Library Functions. i/o functions are defined in stdio.h
सी लैंग्वेज प्रोग्राम्स में, प्रोग्राम द्वारा इनपुट ग्रहण करना एवं आउटपुट प्रदान करना एक महत्वपूर्ण कार्य है, सी लैंग्वेज में कई फंक्शन उपलब्ध है जिनके द्वारा इनपुट-आउटपुट ऑपरेशन किये जाते है इन फंक्शन को सम्मिलित रूप से स्टैण्डर्ड इनपुट-आउटपुट लाइब्रेरी फंक्शन कहा जाता है। i/o फंक्शन को stdio.h में परिभाषित किया गया है।
1.) The getchar function can be used to read a single character from the standard input device(keyboard).
getchar फंक्शन का प्रयोग स्टैण्डर्ड इनपुट डिवाइस से(कीबोर्ड) एक अक्षर को पढने के लिए किया जाता है।
Syntax-
variable_name = getchar():
2.) The putchar function can be used to write a single character at one time to the standard output device(monitor).
putchar फंक्शन का प्रयोग स्टैण्डर्ड आउटपुट डिवाइस पर(मॉनिटर ) एक अक्षर को लिखने के लिए किया जाता है।
variable_name = getchar():
2.) The putchar function can be used to write a single character at one time to the standard output device(monitor).
putchar फंक्शन का प्रयोग स्टैण्डर्ड आउटपुट डिवाइस पर(मॉनिटर ) एक अक्षर को लिखने के लिए किया जाता है।
Syntax-
putchar (variable_name);
Example-
#include <stdio.h>
void main(){
char ch;
printf ("Enter a character-");
ch = getchar();
//printf ("The character you entered is = %c", ch);
printf ("The character you entered is =");
putchar(ch);
}
String input and output -
putchar (variable_name);
Example-
#include <stdio.h>
void main(){
char ch;
printf ("Enter a character-");
ch = getchar();
//printf ("The character you entered is = %c", ch);
printf ("The character you entered is =");
putchar(ch);
}
String input and output -
1.) The gets function can be used to get a string from standard input device(keyboard).
gets फंक्शन का प्रयोग स्टैण्डर्ड इनपुट डिवाइस से(कीबोर्ड) एक स्ट्रींग को पढने के लिए किया जाता है।
Syntax-
gets(str);
2.) The puts function can be used to send string output to the standard output device(monitor).
puts फंक्शन का प्रयोग स्टैण्डर्ड आउटपुट डिवाइस पर (मॉनिटर ) एक स्ट्रींग को लिखने के लिए किया जाता है।
Syntax-
puts(str);
Example-
#include <stdio.h>
void main(){
char str[20];
printf ("Enter a string less than 20 characters-");
gets(str);
printf ("The string entered is-");
puts(s);
}
Formatted Input and Output-
1.) The scanf function can be used to get formatted input from the standard input device(keyboard).
scanf फंक्शन का प्रयोग स्टैण्डर्ड इनपुट डिवाइस से(कीबोर्ड) फॉरमेटेड इनपुट पढने के लिए किया जाता है।
Syntax-
scanf("control string", arg1, arg2, arg3....argn);
The format field is specified by the control string and the arguments arg1, arg2,....argn specifies the address of location where value is to be stored.
Example :
scanf ("%2d %3d",&a1,&a2);
scanf ("%f %f %f", &a, &b, &c);
scanf ("%c %s", &ch, list);
2.) The printf function can be used to write formatted output on standard output device(monitor).
printf फंक्शन का प्रयोग स्टैण्डर्ड आउटपुट डिवाइस पर(मॉनिटर ) फॉरमेटेड आउटपुट लिखने के लिए किया जाता है।
Syntax-
printf ("message");
printf ("formatted string", variable list);
Example-
#include<stdio.h>
void main(){
int a=100;
float b=22.75;
printf ("Hello World !!");
printf ("value of a = %d and b=%f",a,b);
}
No comments:
Post a Comment