Input output statement in c with syntax example?
Answers
Answered by
5
C programming has several in-built library functions to perform input and output tasks.
Two commonly used functions for I/O (Input/Output) are printf() and scanf().
The scanf() function reads formatted input from standard input (keyboard) whereas the printf() function sends formatted output to the standard output (screen).
#include <stdio.h>
int main() {
printf("C Programming");
return 0; }
Two commonly used functions for I/O (Input/Output) are printf() and scanf().
The scanf() function reads formatted input from standard input (keyboard) whereas the printf() function sends formatted output to the standard output (screen).
#include <stdio.h>
int main() {
printf("C Programming");
return 0; }
Answered by
0
4x^2*16y^2
You open 2 brackets
(2x+4y)(2x-4y)
Similar questions
Social Sciences,
7 months ago
India Languages,
7 months ago
Science,
7 months ago
Computer Science,
1 year ago
Science,
1 year ago