-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp12.html
More file actions
40 lines (31 loc) · 1.21 KB
/
p12.html
File metadata and controls
40 lines (31 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<h2> example..!</h2>
<p>log<sub>2</sub></p>
<tt> this is monospaced tag..! the text is in teletype formate.</tt>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Neque illum quos obcaecati nulla at aliquid? Velit nam pariatur sit aperiam? Quos architecto accusantium hic aspernatur quia ex perferendis asperiores inventore
</p>
<code> this is a code tag..! is used for to write other language code..!</code>
<code>
#include
int main() {
int number1, number2, sum;
printf("Enter two integers: ");
scanf("%d %d", &number1, &number2);
// calculating sum
sum = number1 + number2;
printf("%d + %d = %d", number1, number2, sum);
return 0;
}
</code>
<pre>
<code> #include
int main() {
int number1, number2, sum;
printf("Enter two integers: ");
scanf("%d %d", &number1, &number2);
// calculating sum
sum = number1 + number2;
printf("%d + %d = %d", number1, number2, sum);
return 0;
}
</code>
</pre>