Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a program in c language to print your bio-data on the
screen by using functions.

Answer Posted / advait shastri

#include<stdio.h>
#include<conio.h>
void main()
{
char name[15],lname[15];
long contact;
char city[15];
clrscr();
printf("\nEnter your full name:");
scanf("%s %s",&name,&lname);
printf("\nEnter your contact:");
scanf("%ld",&contact);
printf("\nEnter your city:");
scanf("%s",&city);
printf("\nYour name:%s %s",name,lname);
printf("\nYour contact:%ld",contact);
printf("\nYour city:%s",city);
getch();
}

Is This Answer Correct ?    82 Yes 49 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how do you list a file’s date and time?

1035


What is the advantage of an array over individual variables?

1226


Can we compile a program without main() function?

1118


Explain the concept and use of type void.

1110


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

3081


With the help of using classes, write a program to add two numbers.

1029


in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures

1203


What does the error 'Null Pointer Assignment' mean and what causes this error?

1211


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

1223


Describe the steps to insert data into a singly linked list.

1067


Is linux written in c?

1037


Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58

1519


Describe explain how arrays can be passed to a user defined function

1093


What is this pointer in c plus plus?

1079


What is a structure member in c?

995