0% found this document useful (0 votes)
15 views1 page

C Programming Basics for Beginners

This document provides basic notes on C programming, covering topics such as variables, data types, loops, and conditional statements. It includes a sample program demonstrating the addition of two integers. The notes serve as an introductory guide for beginners in C programming.

Uploaded by

loginrandom37
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

C Programming Basics for Beginners

This document provides basic notes on C programming, covering topics such as variables, data types, loops, and conditional statements. It includes a sample program demonstrating the addition of two integers. The notes serve as an introductory guide for beginners in C programming.

Uploaded by

loginrandom37
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Basic C Programming Notes

Basic C Programming Notes

Topics:

- Variables: int, float, char

- Data Types: primary and derived

- Loops: for, while, do-while

- If-Else Conditions

- Sample Program:

#include <stdio.h>

int main() {

int a = 10, b = 20;

int sum = a + b;

printf("Sum = %d", sum);

return 0;

You might also like