Change Theme/Template of your blogSarthak Mund S3 June 16, 2019 When we started your blog, we used to run our blog on bloggers default template. But as we started learning more about...
Store Information in Structure and Display it - C Programming By Sarthak Mund S3 19 January 1 Create a structure of 10 students consisting roll number, name and marks in three different subjects and display the average …
Tower of Hanoi Program in C By Sarthak Mund S3 17 January 4 Tower Of Hanoi Tower of Hanoi Program in C #include <stdio.h> // C recursive function to solve tower of hanoi puzz…
Graph Representation Using Adjacency Matrix By Sarthak Mund S3 17 January 0 Graph Representation Using Adjacency Matrix #include<stdio.h> //init matrix to 0 void init(int arr[][V]) { int…
Number is Prime or Not in C By Sarthak Mund S3 17 January 1 Number is Prime or Not in C #include <stdio.h> int main() { int n, i, flag = 0; printf("Enter a posi…
GCD or HCF of 2 Number using Recursion in C By Sarthak Mund S3 17 January 1 GCD(Greatest Common Divisor) or HCF(Highest Common Factor) of 2 number using Recursion in C Programming #include <stdio.h…
WAP to report behavior of the Linux Kernel including information on configured memory, amount of free and used memory (Memory information) By Sarthak Mund S3 17 January 0 Write a Program(WAP) to report behavior of the Linux Kernel including information on configured memory, amount of free and …
Implement SJF (Short Join First) Scheduling in C By Sarthak Mund S3 17 January 0 WAP in C to implement SJF (Short Join First) Scheduling : #include<stdio.h> void main() { int bt[20],p[20],wt[2…
Implement FCFS(First Come First Served) Scheduling in C By Sarthak Mund S3 17 January 0 WAP in C to implement FCFS(First Come First Served) Scheduling #include<stdio.h> int main() { int n,bt[20],wt…