-
Notifications
You must be signed in to change notification settings - Fork 0
/
cprog.html
61 lines (50 loc) · 2.2 KB
/
cprog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introduction to C Programming</title>
<link rel="stylesheet" href="chello.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<header class="head">
<nav>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hidemenu()"></i>
<ul>
<li><a href="home2.html">HOME</a></li>
<li><a href="comm.html">COMMUNITY</a></li>
<li><a href="puzzle.html">PUZZLES</a></li>
<li><a href="courseoff.html">COURSES OFFERED</a></li>
<li><a href="leaderboard.html">LEADERBOARD</a></li>
<!-- <li><a href="">LOGIN</a></li>
<li><a href="">SIGNUP</a></li> -->
<!-- <li><a href="">LOGOUT</a></li> -->
<li><a href="profile.html">PROFILE</a></li>
</ul>
</div>
</nav>
</header>
<button class="back-button" onclick="goToCoursesPage()">Back to Course</button>
<br><br><br>
<button class="vis-button" onclick="goToYoutube2()">Wanna learn visually?</button>
<br><br>
<section class="content">
<h2 class="int">Input and output functions</h2>
<p class="f">C programming language provides several functions for input and output operations. Here are some commonly used functions:</p>
<h3 class="int">1. printf()</h3>
<p class="f">The <code>printf()</code> function is used for output. It displays the information on the output device (usually the console).</p>
<h3 class="int">2. scanf()</h3>
<p class="f">The <code>scanf()</code> function is used for input. It reads the input from the user or a specified source.</p>
</section>
<br><br><br>
<button class="play-button" onclick="goToPlay()">Play</button>
<br>
<footer>
<p>© 2023 Your Learning Platform. All rights reserved.</p>
</footer>
<script src="chello.js">
</script>
</body>
</html>