Like this
#include <stdio.h>void pa(int n){ if(!n){ printf("\n");return;}printf("*");pa(n-1);}void lines(int n){if(!n) return;lines(n-1);pa(n);}int main(void){lines(5);return 0;}
A plotter is a special output device used to produce hard copies of large graphs and designs on paper, such as construction maps, engineering drawings, architectural plans and business charts.
~
Computer output devices receive information from the computer, and carry data that has been processed by the computer to the user. Output devices provide data in myriad different forms, some of which include audio, visual, and hard copy media.
~
They are electroacoustic transducers, which convert an electrical signal to a corresponding SOUND.
Answer:
<p> tag:
The <p> tag in HTML defines a paragraph. These have both opening and closing tag. So anything mentioned within <p> and </p> is treated as a paragraph. Most browsers read a line as a paragraph even if we don’t use the closing tag i.e, </p>, but this may raise unexpected results. So, it is both a good convention and we must use the closing tag.
Syntax:
<p> Content </p>
Example:
<!DOCTYPE html>
<html>
<head>
<title>Paragraph</title>
</head>
<body>
<p>A Computer Science portal for geeks.</p>
<p>It contains well written, well thought articles.</p>
</body>
</html>
Output:
A computer Science Portal for geeks.
It contains well written, well thought articles.