Sunday 11 September 2022

Special Character In C Programming

 

Special Character In C Programming

 

+ Plus

-     Minus

-     /slash

= equal to

^ Caret

| vertical

 

            

 

 

Tuesday 30 August 2022

How to Build Project Details

 - Project Titles

- Client

- Started Working

- Worked Till

-Details of project

- Project location

- Project Site ------ -----Offsite

                                     Onsite


Types of Software Development

 There are different types of software development


- Frontend Development

- Backend Development

- Full Stack Development

- Desktop Development

- Web Development

- Database Development

- Mobile Development

- Cloud Development

Sunday 31 July 2022

Types of Instructions In C Programming

 

Types of Instructions In C Programming

 

There are 3 types of c programming instructions

 

1.     Declaration Instruction – This instruction used  to declare the types of variables

 

For Example –

 

 

Int i=10 , j=30 -     int abc,

                            float xyz

Int j=30 , i=10

 

 

2.     Arithmatic Instructions- This instruction used to perform arithmetic operations on constants and variables

For Example – int a+b

Int ad ;

Float kot,deta,alpha,beta,gamma;

ad = 3000 ;

kot = 0.0056;

deta = alpha*beta/gamma +3.0*2/5 ;

Here

*,/,-,+ are the arithmetic operators

= is the assignment operator

2,5 and 3200 are integer constants

3.2 and 0.0056 are real constants

Ad is an integer variables

kot, deta,alpha, beta, gamma are real variables

Hint – arithmetic operation can be performed on – int, floats,chars.

 

3.     Control Instruction – This instruction is used to control the sequence of execution. (flow of control in program)

 

 

For Example-

 

Program me looping process ( while loop , for loop do- while loop }

 

 

 

 

 

 

coral draw tool's