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 is the deal on sprintf_s return value?

653


Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?

665


what is uses of .net

1283


Why c is a procedural language?

597


What is the difference between a function and a method in c?

573






How can I run c program?

699


How variables are declared in c?

580


Tell us bitwise shift operators?

608


Can include files be nested? How many levels deep can include files be nested?

666


can any one provide me the notes of data structure for ignou cs-62 paper

1716


What are the c keywords?

759


What is an arrays?

666


What are the parts of c program?

646


What is the size of structure in c?

709


What 'lex' does?

725