operators and expressions in c

The sign that are used to complete  logical & mathematical operations in c programs are called operators.consider the expression A+B*10 inside +,*. are operators, A,B are  variables, and 10 is constant. and A+B*10 is an expression.There are different types of operators in c which are below. Types of operators There are different types of operators … Read more

introduction of c language

C is a high programming language, used in common  purpose programming, developed by Dennis Ritchie at AT&T Bell laboratory in USA in 1969 and 1973.It was mainly developed as a system programming language  to write operating system. Like syntax of Java php, JavaScript and many other Languages  is commonly based on c language.C was invented to write … Read more

What is loop in c programming language

some time we need a statement to repeat again and again. In general, statements are executed sequentially. The first statement in a function is executed first and second statement is executes after 1st and and so on. Programming languages provide various structures that allow for more complicated execution paths. C programming provides the following types … Read more