June 20, 2026
Breaking News
  • Is Social Media Doing More Harm Than Good?
  • Pros and Cons of Online Classes
  • Should Uniforms Be Compulsory in Schools?
  • Are Exams the Best Way to Judge a...
Topic Nest Topic Nest
Nav
Nav
Topic Nest

Explore.Learn.Share

Is Social Media Doing More Harm Than Good?
Essay June 20, 2026

Is Social Media Doing More Harm

Pros and Cons of Online Classes
Essay June 20, 2026

Pros and Cons of Online Classes

Should Uniforms Be Compulsory in Schools?
Essay June 19, 2026

Should Uniforms Be Compulsory in Schools?

Are Exams the Best Way to Judge a Student?
Essay June 19, 2026

Are Exams the Best Way to

  • 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

Business Law(312)
C and C++(271)
Civil Engineering(1)
Cloud Computing(25)
Compiler Design(8)
Computer Graphics(166)
Computer Security(2)
Creative(2)
Data Structures(90)
Education(7)
Electronics & Electrical(1)
Essay(6)
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

Is Social Media Doing More Harm Than Good?
Essay June 20, 2026

Is Social Media Doing More Harm Than Good?

Pros and Cons of Online Classes
Essay June 20, 2026

Pros and Cons of Online Classes

Should Uniforms Be Compulsory in Schools?
Essay June 19, 2026

Should Uniforms Be Compulsory in Schools?

Are Exams the Best Way to Judge a Student?
Essay June 19, 2026

Are Exams the Best Way to Judge a Student?

© 2025 Topic Nest | All Rights Reserved