Search for notes by fellow students, in your own course and all over the country.
Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.
Title: C language tutorial( basic ) codes ( chapter 1) Variables, Data Types + Input/Output
Description: C language tutorial( basic ) codes ( chapter 1) Variables, Data Types + Input/Output
Description: C language tutorial( basic ) codes ( chapter 1) Variables, Data Types + Input/Output
Document Preview
Extracts from the notes are below, to see the PDF you'll receive please use the links above
C Language Tutorial
(Basic to Advanced)
Topics to be covered :
Installation + Setup
Chapter 1 - Variables, Data types + Input/Output
Chapter 2 - Instructions & Operators
Chapter 3 - Conditional Statements
Chapter 4 - Loop Control Statements
Chapter 5 - Functions & Recursion
Chapter 6 - Pointers
Chapter 7 - Arrays
Chapter 8 - Strings
Chapter 9 - Structures
Chapter 10 - File I/O
Chapter 11 - Dynamic Memory Allocation
Variables, Data Types + Input/Output
(Chapter 1)
V
1
...
h>
int main() {
printf("Hello World");
return 0;
}
2
...
h>
int main() {
int number;
int age;
int price;
return 0;
}
#include
14;
char percentage = '%';
return 0;
}
3
...
h>
//This program prints Hello World
int main() {
printf("Hello World");
return 0;
}
4
...
h>
int main() {
int age = 22;
float pi = 3
...
Input (Sum of 2 numbers)
#include
Practice Qs 1 (Area of Square)
#include
Practice Qs 2 (Area of Circle)
#include
14 * radius * radius);
return 0;
}
Title: C language tutorial( basic ) codes ( chapter 1) Variables, Data Types + Input/Output
Description: C language tutorial( basic ) codes ( chapter 1) Variables, Data Types + Input/Output
Description: C language tutorial( basic ) codes ( chapter 1) Variables, Data Types + Input/Output