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

Showing posts with label BCA 1st Year. Show all posts
Showing posts with label BCA 1st Year. Show all posts

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...