write a program in c language to print your bio-data on the
screen by using functions.
Answer Posted / jeyasuriya m
#include<stdio.h>
int main()
{
char name[20],fathername[20],qualification[20];
int age,dob;
printf("Student name :");
scanf("%s",&name);
printf("Father name :");
scanf("%s",&fathername);
printf("Qualification :");
scanf("%s",&qualification);
printf("Age :");
scanf("%d",&age);
printf("Date Of Birth :");
scanf("%d",&dob);
printf("Student name :%s
",name);
printf("Father name :%s
",fathername);
printf("Qualification :%s
",qualification);
printf("Age :%d
",age);
printf("Date Of Birth :%d
",dob);
}
| Is This Answer Correct ? | 39 Yes | 20 No |
Post New Answer View All Answers
Differentiate between the = symbol and == symbol?
Not all reserved words are written in lowercase. TRUE or FALSE?
How variables are declared in c?
Can you tell me how to check whether a linked list is circular?
Do array subscripts always start with zero?
Why void is used in c?
How will you divide two numbers in a MACRO?
Explain About fork()?
Describe wild pointers in c?
What is page thrashing?
How can you find the exact size of a data type in c?
What is #line used for?
How can I insert or delete a line (or record) in the middle of a file?
can anyone please tell about the nested interrupts?
Explain the properties of union.