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
What are the types of data structures in c?
What is structure packing in c?
Why is it usually a bad idea to use gets()? Suggest a workaround.
Give the rules for variable declaration?
What is c programming structure?
What does 4d mean in c?
What does printf does?
When should a type cast be used?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is the use of function overloading in C?
What is pragma c?
how to capitalise first letter of each word in a given string?
What is the concatenation operator?
What are linker error?