-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtema1.html
65 lines (56 loc) · 1.28 KB
/
tema1.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="es-ES">
<head>
<meta charset="utf-8">
<title>Structure of a C program</title>
</head>
<body>
<div>
<p> //name of a program
<p>/*
<p>Overview of the code
<p>*/
<p>#include<stdio.h>
<p> #include<conio.h>
<p>#define a = 2
<p>void main()
<p> {
<p> printf("Initial n=2 add 1");
<p> int i = 2;
<p> i++;
<p> printf("Test program n %d",i);
<p> }
<p> return;
</div>
<p>keywords
<li>auto</li>
<li>while</li>
<li>short</li>
<li>goto</li>
<li>do</li>
<li>unsigned</li>
<li>sizeof</li>
<li>for</li>
<li>default</li>
<li>union</li>
<li>return</li>
<li>float</li>
<li>continue</li>
<li>typedef</li>
<li>register</li>
<li>extern</li>
<li>char</li>
<li>switch</li>
<li>long</li>
<li>entry</li>
<li>case</li>
<li>struct</li>
<li>int</li>
<li>else</li>
<li>break</li>
<li>static</li>
<li>if</li>
<li>double</li>
</p>
</body>
</html>