May 6, 2026
Breaking News
  • What is Structural Analysis? Basics Every Civil Student...
  • Thermodynamics Laws Explained Simply with Real-Life Examples
  • Ohm’s Law, Kirchhoff’s Laws & Circuit Analysis for...
  • Data Structures Explained: Arrays, Linked Lists, Trees &...
Topic Nest Topic Nest
Nav
Nav
Topic Nest

Explore.Learn.Share

Basics of Structural Analysis in Civil Engineering
Civil Engineering April 7, 2026

What is Structural Analysis? Basics Every

thermodynamics laws explained simply
Mechanical Engineering April 3, 2026

Thermodynamics Laws Explained Simply with Real-Life

Ohm's Law Kirchhoff's Laws circuit analysis
Electronics & Electrical April 2, 2026

Ohm’s Law, Kirchhoff’s Laws & Circuit

Data Structures
C and C++ Data Structures April 2, 2026

Data Structures Explained: Arrays, Linked Lists,

  • Blog
  • Checkout
  • Home
  1. Home
  2. C and C++
C and C++

Write a C program to find sum of two matrices

  • BY Team Topic Nest
  • March 22, 2023
  • 0 Comment
C and C++

C program to accept N numbers and arrange them in...

#include <stdio.h> int main() { int arr[100], n, i, j, temp; // Accept total number of elements printf("Enter the number...
  • BY Team Topic Nest
  • March 17, 2023
  • 0 Comment
C and C++

C Program to Print the Alternate Elements in an Array

#include <stdio.h> int main() { int arr[100], n, i; // Accept number of elements printf("Enter the number of elements: ");...
  • BY Team Topic Nest
  • March 17, 2023
  • 0 Comment
C and C++

C Program to Increment every Element of the Array by...

#include <stdio.h> int main() { int arr[100], n, i; // Input number of elements printf("Enter the number of elements in...
  • BY Team Topic Nest
  • March 17, 2023
  • 0 Comment
C and C++

Write a program to print Fibonacci Series upto a given...

The Fibonacci series is a sequence of integers in which the first two integers are 1 and from third integer...
  • BY Team Topic Nest
  • March 16, 2023
  • 0 Comment
C and C++

Write a program to find GCD of two numbers

The GCD or HCF (Highest Common Factor) of two integers is the greatest integer that divides both the integers with...
  • BY Team Topic Nest
  • March 16, 2023
  • 0 Comment
C and C++

Write a program using recursion to find power of a...

We can write, nm = n*nm-1 =n*n*nm-2 =n*n*n*……………m times *nm-m The program which implements the above logic is as follows:...
  • BY Team Topic Nest
  • March 16, 2023
  • 0 Comment
C and C++

Write a program using recursion to find the summation of...

We can say ‘sum of numbers from 1 to n can be represented as sum of numbers from 1 to...
  • BY Team Topic Nest
  • March 16, 2023
  • 0 Comment
C and C++

Write a program using function to find factorial of a...

#include <stdio.h> // Function to calculate factorial int factorial(int n) { int fact = 1; for(int i = 1; i...
  • BY Team Topic Nest
  • March 12, 2023
  • 0 Comment
C and C++

Actual Arguments And Formal Arguments

Actual Arguments These are the real values or variables you pass to a function when calling it. They appear in...
  • BY Team Topic Nest
  • March 12, 2023
  • 0 Comment
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • …
  • 28

Search

Categories

C and C++(271)
Civil Engineering(1)
Cloud Computing(25)
Compiler Design(8)
Computer Graphics(166)
Computer Security(2)
Creative(1)
Data Structures(90)
Education(3)
Electronics & Electrical(1)
Essay(1)
Food(2)
Health(2)
Kannada(1)
Mechanical Engineering(1)
Meditation & Mindfulness(1)
Natural Remedies(1)
OS(282)
Php(26)
Physics(1)
Preventive Care(1)
Shell Script(3)
Study Abroad(3)
Uncategorized(1)

Blog Posts

Basics of Structural Analysis in Civil Engineering
Civil Engineering April 7, 2026

What is Structural Analysis? Basics Every Civil Student Must Know

thermodynamics laws explained simply
Mechanical Engineering April 3, 2026

Thermodynamics Laws Explained Simply with Real-Life Examples

Ohm's Law Kirchhoff's Laws circuit analysis
Electronics & Electrical April 2, 2026

Ohm’s Law, Kirchhoff’s Laws & Circuit Analysis for Beginners

Data Structures
C and C++ Data Structures April 2, 2026

Data Structures Explained: Arrays, Linked Lists, Trees & Graphs

© 2025 Topic Nest | All Rights Reserved