By using this site, you agree to the Privacy Policy and Terms of Use.

August 3, 2025
Breaking News
  • Untold Stories of 5 Famous Paintings That Changed...
  • ನಾನು ದೊಡ್ಡವನಾದಾಗ ಏನು ಆಗಲು ಇಚ್ಛಿಸುತ್ತೇನೆ
  • What I Want to Be When I Grow...
  • How to Build Effective Study Habits for Long-Term...
Topic Nest Topic Nest
Nav
Nav
Topic Nest

Explore.Learn.Share

Creative July 24, 2025

Untold Stories of 5 Famous Paintings

Education Kannada July 24, 2025

ನಾನು ದೊಡ್ಡವನಾದಾಗ ಏನು ಆಗಲು ಇಚ್ಛಿಸುತ್ತೇನೆ

Education Essay July 24, 2025

What I Want to Be When

Education July 24, 2025

How to Build Effective Study Habits

  • About Us
  • Blog
  • Cart
  • Cart
  • Checkout
  • Checkout
  • Contact Us
  • Home
  • Home Three
  • Home Two
  • My account
  • My account
  • Sample Page
  • Shop
  • Shop
  • Team
  1. Home
  2. C and C++
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

#include<iostream.h> class degree { private: float angle, f, t, d, r; public: degree(); float radian(); void disp(); }; degree::degree() {...
  • BY Team Topic Nest
  • October 20, 2021
  • 0 Comment
C and C++

Program to convert decimal to binary using templates

#include<iostream.h> #include<math.h> template<class T> class convert { private: int base, rem, t1; long y; public: void asctobin(T p) { y=base=0;...
  • BY Team Topic Nest
  • October 20, 2021
  • 0 Comment
C and C++

Program to overload ‘+’ operator for concating the strings

#include<iostream.h> #include<string.h> class string{ int len; char *name; public: string() { len = 0; name = new char[1]; } string(char...
  • BY Team Topic Nest
  • October 20, 2021
  • 0 Comment
  • 1
  • …
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • …
  • 27

Search

Categories

C and C++(270)
Cloud Computing(25)
Compiler Design(8)
Computer Graphics(166)
Computer Security(2)
Creative(1)
Data Structures(89)
Education(3)
Essay(1)
Food(2)
Health(2)
Kannada(1)
Meditation & Mindfulness(1)
Natural Remedies(1)
OS(282)
Php(26)
Physics(1)
Preventive Care(1)
Shell Script(3)
Uncategorized(1)

Blog Posts

Creative July 24, 2025

Untold Stories of 5 Famous Paintings That Changed Art Forever

Education Kannada July 24, 2025

ನಾನು ದೊಡ್ಡವನಾದಾಗ ಏನು ಆಗಲು ಇಚ್ಛಿಸುತ್ತೇನೆ

Education Essay July 24, 2025

What I Want to Be When I Grow Up

Education July 24, 2025

How to Build Effective Study Habits for Long-Term Success

© 2025 Topic Nest | All Rights Reserved