Week 9: Pointer
Overview Welcome to Week 9 of C programming! This week, we will explore pointer. By the end of this tutorial, you will: Understand the basic concept of pointer Understand the difference betwee...
Overview Welcome to Week 9 of C programming! This week, we will explore pointer. By the end of this tutorial, you will: Understand the basic concept of pointer Understand the difference betwee...
Exercise 1: Count how many even numbers are in an array. Ask the user to enter 10 integers into a 1D array. Print how many of them are even. #include <stdio.h> int main(void) { i...
Overview Welcome to Week 6 of C programming! This week, we’ll explore arrays, randomness, and special control flow keywords. By the end of this tutorial, you will: Understand how to declare an...
W5 Answers 🔍 Exercise 1: Make a swap function Input two numbers change the value of each variable print the result #include<stdio.h> void I_can_swap_num(int *a, int *b) { int t...
Overview Welcome to Week 5 of C programming! This week, we will explore functions that make your code simple and reusable. By the end of this tutorial, you will: Understand how to use functions ...
Overview Welcome to Week 5 of C programming! This week, we will explore control statements that help in decision-making and iteration. By the end of this tutorial, you will: Understand how to us...
W3 Material Where Theory Meets Practice 🚀 📌 Overview This week covers the fundamentals of operators, while loops, and do-while loops in C programming. Through hands-on exercises, students will...
Overview Welcome to your second week of learning C programming! This week, we will cover the basics of writing and running a simple C program. By the end of this tutorial, you will: Overflow, U...
Overview This week, we will cover the basics of writing and running a simple C program. By the end of this tutorial, you will: Understand the structure of a C program Learn how to use printf()...
Overview Welcome to your first week of learning C programming! This week, we will cover the basics of writing and running a simple C program. By the end of this tutorial, you will: Understand th...