Skip to main content

Posts

Identifiers In C Programming Language.

Identifiers used In C                  A c program consists of two types of elements, user defined and pre-defined.identifier is nothing but a name given to those elements. An identifier is a word used by programmer to name a variable,function or label.identifiers consists of letters and digits,in any order , except that the first character must be a letter.Both upper and lowercase letters can be used. Identifiers are :- 1.  Keywords. 2.  Variables. 3.  Constants. 4.  Numbers. 5.  Data types keywords :-               Keywords are nothing but system defined identifiers. Keywords are reserved words of the language.they have specific meaning in the language and cannot be used by the programmer as variable or constant names. c language specifies 32 keywords and other reserved keywords. Keywords are listed below : auto If r...

Introduction to 'C' Programming language.

Introduction to C Programming language              C is a high level,general purpose,structured programming language.instructions of c consist of terms that are very closely same to algebraic expressions,consisting of certain English keywords.  By design, C provides constructs that map efficiently to typical  machine instruction  and has found lasting use in applications previously coded in  assembly language . Such applications include  operating systems  and various  application software  for computers, from  supercomputers  to  embedded systems .              C was originally developed at   Bell Labs  by  Dennis Ritchie  with their colleague Ken Thompson between 1972 and 1973 to make utilities running on  Unix . Later, it was applied to re-implementing the kernel of the Unix operating system. During the 19...

Simple 'c' program to find square of a given number for beginners | SM53 Just Coding

 Simple Program To Find Square Of A Given Number     It is the one of the simple programs. In this we have used very simple logic of finding square of a given number which we have studied in school. The logic is very simple as below :-           square of 2 = 2 * 2,           that means square of no = no * no we have implemented it in following program : Code :-              #include<stdio.h>             #include<conio.h>             void main()             {                int n,sq;                printf("Enter a Number: ");                scanf("%d",&n);                sq = n * n; ...

Simple C program to perform four basic Arithmetic operations Turbo c++. | SM53 Just Coding

           A very Simple program to perform arithmetic operations in single C program.         How to create simple C program to perform four basic Arithmetic operations in Turbo c++. | SM53 Just Coding.            Hi friends, it is an simple c program to calculate Addition/Subtraction/Multiplication/Division using ' Switch-case ' statement. It has a menu and different option to perform. We have used simple logic in this program. Subscribe my channel for more amazing videos Like share the video in your friend. And ask any question down below.  YouTube Video link:-            _https://www.youtube.com/watch?v=5Qb5S4NTLII&feature=youtu.be  Subscribe my channel for more. Comment down if you want to get more information about programing and programing languages. Engineers World. Prog...