Escape Sequence in C Programming

Escape sequence in c programming; In this tutorial, i am going to show you what is escape sequence and how to use escape sequence in c programming. What is Escape Sequence in C Programming An escape sequence is a sequence of characters that does not represent itself when used inside a character or string literal, but is … Read more

Structures in C

Structures in C programming; In this tutorial, i am going to show you how to create and use structures in C programming. Structures in C Here, i will show you how to create and use structures in C programming: Definition of Structures in C Syntax of Structures In C Define Structures in C Example of … Read more

C Program to Calculate Simple Interest

C program to calculate simple interest; In this tutorial, i am going to show you how to calculate simple interest in c program using function and normal formula. Algorithm and Programs to Calculate Simple Interest in C Algorithm to Calculate Simple Interest Follow the below given algorithm to write a program to calculate simple interest; … Read more

C Program to Compare two Strings

In this tutorial, i am going to show you how to count number of words in a given string with the help of standard method, function, and standard library. All C Programs to Compare two Strings C Program to Compare two Strings using Standard Method #include <string.h> int main() { char s1[1000],s2[1000]; int i,c=0; printf(“Enter … Read more

C Program to Find Nth Fibonacci Number

In this tutorial, i am going to show you how to find the Nth Fibonacci number using recursion in c programs. C Program to Find Nth Fibonacci Number using Recursion /* C Program to Find Nth Fibonacci Number using Recursion */ #include<stdio.h> int Fibonacci_Series(int); int main() { int Number, Fibonacci; printf(“\n Please Enter the Number … Read more

C programming Increment and Decrement Operators

Increment and decrement operators in c; In this tutorial, i am going to show you increment operator (++) and the decrement operator (–) in c programming with the help of examples. C programming Increment and Decrement Operators In the C programming language, there is an operator known as an increment and decrement operator which is represented by ++ … Read more