BCA Course

Here we gave easiest understanding program to you.
All programs easy to learn every person.
And all subjects are compulsory in BCA.
Powered by Blogger.

Followers

Friday, 20 September 2019

0 comments

    Various Sorting techniques available in Data Structure 1. Bubble Sort 2. Insertion Sort 3. Merge Sort 4. Quick Sort ...

Tuesday, 17 September 2019

0 comments

/* C Program to simulate a calculator */ #include<stdio.h>  int main()  { int a,b,c;    char op;     printf("E...

0 comments

/* C Program to verify given no. is prime or not */ #include<stdio.h>  int main()  {    int n,f=0,i=1;     printf...

0 comments

/* C Program to verify a given  no. is perfect or not */ #include<stdio.h>  int main()  {     int n,sum=0,i=1;    pr...

0 comments

/* C Program to read data from keyword and store into a file xyz.txt*/ #include<stdio.h> int main() { FILE *fp; ch...

0 comments

/* C Program to verify given no. is Palindrome or not */ #include<stdio. h> int main() {   int n,r,m,sum=0;     p...

0 comments

/* C Program to verify given no. is Armstrong or not */ #include<stdio.h>  int main()  {    int n,r,sum=0,m;   p...

0 comments

/* C Program find to area and perimeter of Rectangle */   #include<stdio.h>                       int main()              ...

Monday, 16 September 2019

0 comments

/* C Program to find the sum of individual digits of given no. */              #include<stdio.h>       int main()     {  ...

Thursday, 12 September 2019

0 comments

* Friend - Class:-   A friend class can access private and protected members of other class in which it is declared as friend....