C Programming Relational Operators

Relational operators in c programming; In this tutorial, i am going to show you relational operators in c programming and how to use relational operator in c programs. Relational Operators In C Programming A relational operator checks the relationship between two operands. If the relation is true, it returns 1; if the relation is false, … Read more

Structures and Functions in C

Structures and functions in C; In this tutorial, i am going to show you how to pass struct variables as arguments to a function. And as well as learn how to return struct from a function with the help of examples. Structures and Functions in C Passing Structure Members To Functions in C Program Passing … Read more

C Program to Convert Celsius to Fahrenheit

In this tutorial, i am going to show you how to convert celsius to Fahrenheit in c program. Algorithm to Convert Celsius to Fahrenheit Follow the below given algorithm to write a program to convert Celsius to Fahrenheit; as follows: C Program to Convert Celsius to Fahrenheit #include <stdio.h> int main() { float celsius, fahrenheit; … Read more

C Program to Concatenate Two Strings

In this tutorial, i am going to show you how to concatenate or join two string with the help of for loop, while loop, function and pointer in c program. Algorithm and Programs to Concatenate Two Strings in C Algorithm To Concatenate Two Strings Follow the below given algorithm to write a program concatenate or … Read more

C Program to Sum of Fibonacci Series

In this tutorial, i am going to show you how to find sum of fibonacci series with the help of for loop, while loop and function in c programs. All C Programs to Sum of Fibonacci Series C Program to Sum of Fibonacci Series using For Loop #include <stdio.h> int main() { int Number, Next, … Read more

Conditional or Ternary Operator in C

Conditional or ternary operator in c; In this tutorial, i am going to show you conditional or ternary operators in c programming with examples. This tutorial will take several examples as follows: C program to find maximum between two numbers using conditional operator To check whether the given number is positive or negative using conditional … Read more