Learn Ethical Hacking course 2022 Sunday, October 30, 2022 1. The Truth About Living in a Technology Based World 2. Overview of the CEH Certification Program 3. How to Build a Lab to Hack Safely 4. I...
Accounts How to? Privacy Security snapchat Social Media How to delete (or) deactivate your Snapchat account Tuesday, September 27, 2022 How do I delete my Snapchat account? If you’re having an issue on Snapchat, we might be able to help. Contact support to let us know w...
College Development Earn Money Google GPA Job Startup How to get a high paying job at Google even with low GPA? September 27, 2022 Google is the fifth highest paying company in the USA. But to land one of those high-paying jobs, you’ll have to be strategic about...
Business Company Earning Income Startup How to Launch a Startup Company in India September 27, 2022 You need to have a plan and list down the process in order for everything to go smoothly. Here are 9 important steps that you need ...
Data Structures Stacks Using Linked Lists Sunday, October 4, 2020 #include<stdio.h> #include<stdlib.h> typedef struct snode *sptr; struct snode { int data; sptr next; }; sptr top; void s...
Data Structures Stacks Using Arrays October 04, 2020 #include<stdio.h> #include<stdlib.h> #define max 5 int top; int stack[max]; void push(int value) { if(top==max-1) { ...
Data Structures QUEUES Using Arrays October 04, 2020 #include<stdio.h> #include<stdlib.h> #define size 5 int f,r; int Q[size]; void qinsert(int x) { if(r==size-1) { ...
Data Structures Insert Sort (Data Structures in C) Saturday, October 3, 2020 #include <stdio.h> #include <conio.h> int main() { int n, i, j, swap; int arr[80]; printf("Enter number of elem...
Data Structures Bubble Sort (Data Structures in C) October 03, 2020 #include <stdio.h> #include <conio.h> int main() { int i,j,k,n,temp,arr[12],echg; printf("enter the number of eleme...
Data Structures Quick Sort Thursday, September 24, 2020 #include <stdio.h> #include <conio.h> void quicksort (int [], int, int); int main() { int list[80]; int size, i; pri...