2023 2024 EduVark > Education Discussion > General Discussion


  #1  
February 10th, 2016, 11:42 AM
Super Moderator
 
Join Date: Mar 2012
VNSGU BCA Notes

Sir I am looking for the VNSGU BCA C programming some sovle programs so can you please provide me the same

Veer Narmad South Gujarat University is a public university located in the city of Surat, Gujarat, India, the 4th fastest growing city in the world.


VNSGU BCA C programming sovle programs

//Addition of 2 numbers
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter a, b : ");
scanf("%d %d",&a,&b);
c = a + b;
printf("\na = %d",a);
printf("\nb = %d",b);
printf("\nc = %d",c);
getch();
}

//Addition, Subtraction, Multiplication, Division of 2 numbers
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c,d,e,f;
clrscr();
printf("Enter a, b : ");
scanf("%d %d",&a,&b);

c = a + b;
d = a - b;
e = a * b;
f = a / b;

printf("\na = %d",a);
printf("\nb = %d",b);
printf("\nc = %d",c);
printf("\nd = %d",d);
printf("\ne = %d",e);
printf("\nf = %d",f);
getch();
}

//Area of rectangle
#include<stdio.h>
#include<conio.h>
void main()
{
int l,b,a;
clrscr();
printf("Enter l, b : ");
scanf("%d %d",&l,&b);

a = l * b;

printf("\nl = %d",l);
printf("\nb = %d",b);
printf("\na = %d",a);
getch();
}


If you want more feel free to contact

Last edited by Neelurk; April 17th, 2020 at 11:25 AM.
Similar Threads
Thread
Bca vnsgu
Vnsgu mlw
MBA Notes Free Download Pdf MBA Notes for D.S.S MBA
MBA Free Lecture Notes MBA Notes on Leadership
VC of VNSGU
MCA in VNSGU
VNSGU B.Ed
Vnsgu msc ict
MBA in VNSGU
VNSGU Job
Dcs vnsgu
Vnsgu msc it
VNSGU B.Com
MSC CA in VNSGU
Vnsgu e

  #2  
March 6th, 2021, 04:18 PM
Junior Member
 
Join Date: Mar 2021

Ic solved paper last three year


Quick Reply
Your Username: Click here to log in

Message:
Options



All times are GMT +5. The time now is 10:30 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Content Relevant URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8