Write the Characteristics of c language
C is a structured programming language. It was developed in 1973 by Dennis Ritchie at AT & T Bell Laboratories. It is very popular programming languages today because of its structure, fast, high-level abstraction, machine independent feature. Characteristics of āCā Language It has a very small size The major use…
a ternary operator in c language explain
Instead of writing longer if and else conditional statements most of the programmer prefer to use the ternary operator for decision making. In c programming language ternary operator take three arguments: The first argument is for comparison The second argument is the result which will be print/return when the condition…
What is the importance of c language?
It does not matter how fast our technology is moving and how much new language is coming in the market but still, In today’s world, we can’t ignore the C programming language. Still, there is very significant use of the C programming language in today’s world. Let see how C…
How to use Goto Statement in C language with example
In this tutorial you are going to learn how to use effectively goto statement in C Language with the help of an example. In C programming language goto is a special type of statement which we can use when we want to transfer the control of execution at some another…
While loop in c with examples
The while is a control loop statement in C programming language. It works on validating the test condition which is given to it. While loop evaluated the given conditions, if the condition is true, then the body of the while loop will be executed. And If the condition is false,…
what is a union in c with example
C Union is a derived data type which is very similar to the structure data type. But there is some difference between them is the allocation of memory. The union is also a derived data type in C programming Language. It is a collection of different types of primitive data…