BCA second Semester of C-Programming Chapter Eight and Nine Notes
we are sharing a notes of C-programming Chapter 4,5,6&7 which notes is Prepared by Roshan Khatri
its notes is only available for study not a missed used.
Special Thanks for Roshan Khatri Sir which is share...
BCA Third semester||System Analysis and Design (SAD)|| Some Notes
BCA Third semester some Notes . Its Note is Only available for Study Purpose not for Third Party. if you need More Notes of BCA Semester wise complete Please comment us or message in...
Introduction to management (ITM) unit Seven Organizational change and Development Notes BCA Fifth...
Introduction to management (ITM) unit Seven Organizational change and Development Notes BCA Fifth (5th ) Semester
Introduction to management (ITM)
unit seven
Organizational change and Development t
BCA Fifth (5th ) Semester
Complete Notes bca 5th semester
This note is...
Mis and Business Unit 3 Introduction to Management Information System notes BCA Fifth...
Introduction to Management Information System
BCA Fifth semester
Introduction to Management Information System bca fifth semester mis and business
install our bcanotesnepal application from playstore : BCA Notes NepalDo not forget to like our facebook page...
Dot Net Technology Complete Notes BCA Fifth Semester
Dot Net Technology
Complete Notes BCA fifth semester
DOT net Technology Complete Notes
This note is provided for only study purposes from Raju poudel Sir for BCA Fifth Semester Students.
install our bcanotesnepal application from playstore : ...
Java Complete Notes || BCA Third Semester
BCA Third semester Java Notes . Its Note is Only available for Study Purpose not for Third Party. if you need More Notes of BCA Semester wise complete Please comment us or message in...
SINGLY LINEAR LINK LIST
BCA Third Semester
Singly Linear link list
data structure
#include<stdio.h>
#include<conio.h>
#include<malloc.h>
struct link
{
int data;
struct link *next;
};struct link *nw, *head, *tail, *temp1, *temp2;
void insert_begin();
void insert_middle();
void insert_end();
void delete_begin();
void delete_middle();
void delete_end();
void display();
void main()
{
int item,ch;
do
{
clrscr();
printf("1. Insert Node of Beginning : n2. Insert Node...
Scripting language MCQ Model Question paper Set I to 10 with answer sheet BCA...
Scripting language MCQ Model Question paper BCA Fourth Semester SL
set one to ten for only bca fourth semester
install our bcanotesnepal application from playstore : BCA Notes NepalDo not forget to like our facebook...
SORTING USING INSERTION SORT
SORTING USING INSERTION SORT
BCA Third Semester
Data Structure
#include <stdio.h>
#include <conio.h>
int main()
{
int n, array, c, d, t;
clrscr();
printf("Enter number of elements : ");
scanf("%d", &n);
printf("Enter %d integersn", n);
for (c = 0; c < n; c++) {
scanf("%d", &array);
}
for (c...