AAQIB ANAYAT
-
Text files in multimedia
Types of text files There are three types of text files:1. Plain text. 2. Rich text. 3. Hyper text. …
Read More » -
What is typeface or Font
What is typeface A typeface is a family of graphic characters includes many types , sizes and styles . Examples…
Read More » -
Virtual Reality
What is virtual reality Virtual reality is an interaction of computer generated experience taking place within a simulated environment, that…
Read More » -
What is multimedia?
What is multimedia Multimedia is any combination of text, art, sound, animation, and video delivered to you by computer or…
Read More » -
what is Database and DBMS and some key concepts
Database Management System: DBMS is a general purpose software system that facilitates the process of defining, constructing, manipulating and sharing…
Read More » -
Stack data structure using linked list in C programming with menu
Stack data structure using linked list in C programming with menu // stack using linked list#include <stdio.h>#include <stdlib.h>struct stackItem{…
Read More » -
write a c program print fibonacci series using recursion
Fibonacci series using recursion? #include int fib(int n){ if (n
Read More » -
doubly linked list
Doubly Linked List: Doubly linked list is a list in which a node has three parts data part and two…
Read More » -
circular linked list
Circular Linked list: A circular linked list is a collection of elements in which every element has a link to…
Read More » -
singly linked list
Singly Linked List Singly linked list is a list where in every node there are two parts data part and…
Read More » -
what is linked list data structure
What is a Linked list? Linked list is linear data structure which stores its data elements called nodes in random…
Read More » -
write a c program to merge two files into third file
C program to merge two files into third file? #include <stdio.h> #include <stdlib.h> void main() { FILE *fs1, *fs2,…
Read More » -
write a c program to copy contents of one file to another file
C program to copy contents of one file to another file? #include<stdio.h>#include<string.h>main() { FILE *fp1, *fp2; char a; fp1 =…
Read More » -
write a c program to implement all operations of files
File handling with menu driven program All operations? #include<stdio.h>#include<conio.h>#include<string.h>#include<stdlib.h>// Function deceleration.void write_to_file(char file_name[]);void read_form_file();void read_specific_record(char file_name[]);void update_file(char file_name[]);void delete_record();void…
Read More » -
write a c program to add dialgonal elements of matrix
C program to add diagonal elements of matrix? #include<stdio.h> main(){ int i, j, rows, columns, a[10][10], Sum = 0; printf("n…
Read More »