What is the Knowledge that is kept to oneself? It is the power that one holds. At mycomputerknowledge.com we share knowledge associated with the world of Information and Technology. We tend to give the solutions for the problem statements that the Computer Science Students and Learners face. Computer Science spans over a range of vast Array of fields. We focus on Data Structures, DBMS, HTML, Aptitude and Reasoning. We aim to educate the problem solvers, with our simplified approach towards a problem that can be easily understood by the learners. We assure to help you to paint the picture of your successful future! Obviously, “We share Knowledge…!” |
Data Structure
Queue Implementation using Array
Queue Implementation using Array
// C Program to Implement a Queue using an Array
#include <stdio.h>
#include <stdlib.h>
#define MAX 20
void insert();
void delete ();
void display();
int queue_array;
int rear =...
HTML
DBMS
Application of DBMS
Different DBMS software is used in different sectors. Some of the DBMS software are MYSQL, Oracle, PostgreSQL, SQLite, Microsoft SQL Server. Following are some...