1.
What is the output of C Program? 1 point
#include<stdio.h>
struct Point
{
int x, y;
};
int main()
struct Point p 1 = {0, 1);
017-20;
Answers
Answered by
3
Answer:
When we say Output, it means to display some data on screen, printer, or in any file. C programming provides a set of built-in functions to output the data on the computer screen as well as to save it in text or binary files.
Similar questions