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++

Explain Constructors

Constructors are special class functions which performs initialization of every object. The Compiler calls the Constructor whenever an object is...
  • BY Team Topic Nest
  • October 24, 2021
  • 0 Comment
C and C++

Explain Namespace

Namespace is a new concept introduced by the ANSI C++ standards committee. A namespace is introduced to avoid name clashes...
  • BY Team Topic Nest
  • October 24, 2021
  • 0 Comment
C and C++

Explain function overloading with example

Function overloading means, two or more functions have the same names but different argument lists The arguments may differ in...
  • BY Team Topic Nest
  • October 24, 2021
  • 0 Comment
C and C++

C++ program to swap two integers values and display the...

#include<iostream> using namespace std; void swap(int &x, int &y) { int temp; temp = x; x = y; y =...
  • BY Team Topic Nest
  • October 24, 2021
  • 0 Comment
C and C++

Difference between Reference and Pointer Variable

Reference variable Pointers References must be initialized when created Pointer Can be initialized at any time Once reference is assigned...
  • BY Team Topic Nest
  • October 24, 2021
  • 0 Comment
C and C++

Explain reference variable

A reference variable is just another name to an already existing variable. Creating Reference Variable The reference variable is created...
  • BY Team Topic Nest
  • October 24, 2021
  • 0 Comment
C and C++

List & explain Basic features of object oriented programming language

Basic concepts and features of object oriented programming language like C++. Following are the features or basic concepts of C++...
  • BY Team Topic Nest
  • October 24, 2021
  • 0 Comment
C and C++

Difference between Procedure Oriented Programming and Object Oriented Programming

Procedure oriented programming Object oriented Programming Emphasis is given more to procedures (functions) Emphasis is given more to data in...
  • BY Team Topic Nest
  • October 24, 2021
  • 0 Comment
C and C++

C / C++ program to emulate the unix ln command

#include<stdio.h> #include<sys/types.h> #include<unistd.h> #include<string.h> int main(int argc, char * argv[]) { if(argc < 3 || argc > 4 || (argc...
  • BY Team Topic Nest
  • October 23, 2021
  • 0 Comment
C and C++ Compiler Design

C/C++ program that outputs the contents of its Environment list

#include<stdio.h> int main(int argc, char* argv[ ]) { int i; char **ptr; extern char **environ; for( ptr = environ; *ptr...
  • BY Team Topic Nest
  • October 23, 2021
  • 0 Comment
  • 1
  • …
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • …
  • 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