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 ? | 212 Yes | 114 No |
Post New Answer View All Answers
Why does notstrcat(string, "!");Work?
What are the restrictions of a modulus operator?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What does %d do?
What is the use of sizeof () in c?
What is external variable in c?
write a program to copy the string using switch case?
Why void is used in c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
what is a constant pointer in C
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
How do shell structures work?
How to define structures? ·
What is preprocessor with example?
Explain the use of #pragma exit?