Skip to main content

C Programming Basics

 

Keywords

Keywords are predefined, reserved words used in programming that have special meanings.

ex:- int money;
Here, int is a keyword that indicates money is a variable of type int (integer).

Identifiers

Identifier refers to name given to entities such as variables, functions, structures etc.

Variables

In programming, a variable is a container (storage area) to hold data.
ex:- int playerScore = 95;
Here, playerScore is a variable of int type

Constants

If you want to define a variable whose value cannot be changed, you can use the const keyword.
ex:- const double PI = 3.14;

Data Types

Data types are declarations for variables.This determines the type and size of data associated with variables.

Input Output (I/O)

use scanf() function to take input from the user, and printf() function to display output to the user

#include <stdio.h>
int main()
{
int a;
float b;
printf("Enter integer and then a float: ");
// Taking multiple inputs
scanf("%d%f", &a, &b);
printf("You entered %d and %f", a, b);
return 0;
}

Output

Enter integer and then a float: -3 3.4
You entered -3 and 3.400000

Programming Operators

An operator is a symbol that operates on a value or a variable.
Ex:- +,-, *,%

practice

C program to print a sentence
C program to print an integer entered by the user
C program to add two integers entered by the User
C program to multiply two floating-point numbers
C program to find ASCII value of a character entered by the user
C program to find quotient and remainder of Two Integers
C program to find the size of int, float, double and char
C program to swap two numbers

Comments

Popular posts from this blog

C Programming Introduction

  hi friends! Before we depth into c program let us understand, what is programming Programming is the process of creating a set of instructions that tell a computer how to perform a task.Programming can be done using a variety of computer programming languages, such as JavaScript, Python, and C++, PHP, react native, etc. ex:- websites are developed using php mobile application can be developed using reactnative etc Depending on application type, we choose different programming languages to develop it. Let us see an example of c programming to print "hello world" on screen program #include <stdio.h> int main() { /* Our first simple C basic program */ printf("Hello World! "); return 0; } output Hello World! run the code on online compiler https://www.onlinegdb.com/online_c_compiler or install c compiler on system and run c programs. C Basic commands Explanation #include <stdio.h> This is a preprocessor command that include...

Software Development Life Cycle

  Hi Friends!! Interested in developing software projects? Need a website for your business? Want to develop an app of your idea? Yes!. So before developing, let us understand what are the different stages to develop software. Below 7 stages will help in developing a quality software product. Requirements Gathering  Analysis Design Coding Testing Implementation Maintenance Requirements gathering If you want to make your product. Understand what product you want to develop. Plan the product. Gather the content required for making the product. Ex: Want to develop a website for school. Plan the website, like website should contain pages for home, about, courses, gallery, contact. Get the content of mission, vision, gallery, etc of school. If you are working for a client(who needs software) product, then understand the client requirement. Ask questions to understand the product like what functionalities should the product contain?collect all his requirements and have a basic plan ...

C pointers

  C pointers theory C pointers practice 1)Adding two numbers using pointer 2)multiplying 3 numbers using pointers 3)Program to Swap Elements Using Call by Reference(using pointer) 4)Access the elements of array using pointer and display the largest number