• C

Fibonacci Series using While loop: C Program

Today lets see how to generate Fibonacci Series using while loop in C programming. First Thing First: What Is Fibonacci…

  • C

Even or Odd Number using Ternary Operator and without using Modular Division: C Program

Today lets write a C program to check whether a user entered integer number is EVEN or ODD, without using…

  • C

Even or Odd Number using Ternary Operator: C Program

Today lets write a C program to check whether a user entered integer number is EVEN or ODD, using Ternary…

  • C

Programming Interview / Viva Q&A: 5 (while loop)

In this video tutorial lets understand the while loop a little better. We've posted source code of a C program…

  • C

while loop in C programming

So far we've seen sequential flow of our programs. Next we saw decision control statements like if, if else, else…

  • C

Biggest of 3 Numbers Using Ternary Operator: C

Lets find biggest of 3 numbers using ternary operator / conditional operator. This program is an example for nested ternary…

  • C

Biggest of 3 Numbers: C

Lets write C program to find biggest of 3 numbers, using nested if else statement. Related Read: Nested if else…

  • C

Biggest of Two Numbers Using Ternary Operator: C

Lets find biggest of 2 numbers using ternary operator / conditional operator. Related Read: Ternary Operator / Conditional Operator In…

  • C

Ternary Operator / Conditional Operator In C

In this video tutorial we will show you how to use Conditional Operator. They are also called Ternary Operators as…

  • C

C Programming Interview / Viva Q&A: 4 (Logical NOT Operator)

In this video tutorial lets put our understanding of logical NOT(!) operator to test. Related Read: Logical Operators In C…