Thursday, January 10, 2019
Write a C Program find whether the given year is leap year or not.
Recommended Articles
- C Programming
Write a C program to calculate factorial of a number using recursion.Mar 29, 2019
Write a C program to calculate factorial of a number using recursion. Program:- #include <stdio.h> mul(int n); int main() { int...
- C Programming
Write a C program Using user-defined function for addition of N numbers.Mar 29, 2019
Write a C program Using user-defined function for addition of N numbers. Program:- #include <stdio.h> int addNumbers(int n); int main() { &nbs...
- C Programming
Write a C Program to perform addition of two matrices.Mar 29, 2019
Write a C Program to perform addition of two matrices. Program:- #include <stdio.h> void main() { int m, n, c, d, first[10][10],...
- C Programming
Write a C Program to read array of integers and print its sum and average.Mar 29, 2019
Write a C Program to read array of integers and print its sum and average. Program:- #include <stdio.h> void main() { int Arr[10...
Newer Article
Write a C Program check whether given number is positive, negative or zero.
Older Article
Write a C Program to swap two numbers without using third variable.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment