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

Answer Posted / shonali

#include<stdio.h>
void main()
{
char n[],fn[],add[],qu;
printf("Enter name of the student");
scanf("%s\n",&n);
printf("Father's Name");
scanf("%s\n",&fn);
printf("Address");
scanf("%s\n",&add);
printf("qualification");
scanf("%s\n",qu);
}

Is This Answer Correct ?    209 Yes 112 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are called c variables?

569


What are valid operations on pointers?

662


How do you search data in a data file using random access method?

825


What are pointers in C? Give an example where to illustrate their significance.

745


how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....

1366






What is the purpose of scanf() and printf() functions?

711


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?

1909


What is a constant?

626


What is the difference between procedural and functional programming?

512


A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM

1695


c program for searching a student details among 10 student details

1646


Which is more efficient, a switch statement or an if else chain?

571


What is a volatile keyword in c?

634


What is the use of in c?

568


what is uses of .net

1267