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

POSIX compliant program that prints the POSIX defined configuration options...

#define _POSIX_SOURCE #define _POSIX_C_SOURCE 199309L #include<stdio.h> #include<unistd.h> int main() { #ifdef _POSIX_JOB_CONTROL printf("System supports job control\n"); #else printf("System does not...
  • BY Team Topic Nest
  • October 23, 2021
  • 0 Comment
C and C++ Compiler Design

POSIX compliant program to check the following limits: (i) No....

#define _POSIX_SOURCE #define _POSIX_C_SOURCE 199309L #include<stdio.h> #include<unistd.h> int main() { int res; if((res = sysconf(_SC_OPEN_MAX)) == -1) perror("sysconf"); else printf("OPEN_MAX:%d\n",res);...
  • BY Team Topic Nest
  • October 23, 2021
  • 0 Comment
C and C++ OS Shell Script

Program to count the number of characters words spaces and...

%{ #include int c=0,s=0,w=0, l=0; %} %% [ ] {s++;} [\n] {l++;} [^\t\n]+ {w++; c=c+yyleng;} %% main(int argc, char *argv[...
  • BY Team Topic Nest
  • October 22, 2021
  • 0 Comment
C and C++

C program that recreates a child process to read commands...

#include<stdio.h> #include<stdlib.h> #include<sys/types.h> #include<unistd.h> #include<wait.h> #define BUFF 20 int main() { char buff[BUFF]; int Pid = 0, i, ret, returnval;...
  • BY Team Topic Nest
  • October 22, 2021
  • 0 Comment
C and C++ Data Structures

Find shortest paths to other vertices using Dijkra’s algorithm

What is Dijkstra’s Algorithm? Dijkstra’s Algorithm is a popular graph traversal technique used to find the shortest path between nodes...
  • BY Team Topic Nest
  • October 22, 2021
  • 0 Comment
Implement any scheme to find the optimal solution for the travelling salesman problem
C and C++ Data Structures

Implement any scheme to find the optimal solution for the...

Travelling Salesman Problem Using Nearest Neighbour Algorithm in C The Nearest Neighbour (NN) algorithm is a greedy heuristic method for...
  • BY Team Topic Nest
  • October 21, 2021
  • 0 Comment
C and C++

Characteristics of C Programming languages

Direct access to memory layout through pointer manipulation Concise syntax, small set of keywords Block structured language Some encapsulation of...
  • BY Team Topic Nest
  • October 21, 2021
  • 0 Comment
Explain Flowcharts
C and C++ Data Structures

Explain Flowcharts

It is a diagram showing a sequence of activities to be performed for the solution of a problem. • A...
  • BY Team Topic Nest
  • October 21, 2021
  • 0 Comment
C and C++

Program to converting degree to radian using type conversion

In C++ programming, understanding type conversion is essential for precise mathematical computations. One common real-world application is converting angles from...
  • BY Team Topic Nest
  • October 20, 2021
  • 0 Comment
C and C++

Program to convert decimal to binary using templates

Templates in C++ allow you to write generic and reusable code. By using function templates, you can create flexible functions...
  • BY Team Topic Nest
  • October 20, 2021
  • 0 Comment
  • 1
  • …
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • …
  • 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