C program to display odd numbers between 1 and 100
C program to display odd numbers between 1 and 100 #include<stdio.h> int main(){ int rem,i; printf(“\n The odd numbers between
Read moreC program to display odd numbers between 1 and 100 #include<stdio.h> int main(){ int rem,i; printf(“\n The odd numbers between
Read moreC program to display the odd digits present in integer Odd number can not be divided by 2. The remainder
Read moreC Program to Print names of all Files present in a Directory dirent.h header file contains variables and functions related to
Read moreC Program for Dynamic Memory Allocation using malloc() Below is a program on dynamic memory allocation using malloc() and clearing out memory
Read moreC Program to find Deteminant of 2×2 Matrix #include<stdio.h> int main() { printf(“\n\n\t\tEduguru – C Program example\n\n\n”); int a[2][2], i,
Read moreSimple Program to remove Duplicate Element in an Array #include<stdio.h> #include<conio.h> void main() { int a[20], i, j, k,
Read moreC Program to print the Multiplication Table of any Number #include<stdio.h> int main() { printf(“\n\n\t\tEduguru – C Program Example\n\n\n”); int
Read moreProgram to check if input Number is int or float #include<stdio.h> #include<conio.h> #include<string.h> int main() { printf(“\n\n\t\tEduguru – C Program
Read moreProgram to find Palindrome using Recursion A Palindrome is a sequence that if reversed looks identical to the original sequence
Read moreProgram to print Fibonacci Series using Recursion A Fibonacci series is defined as a series in which each number is
Read more