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
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
How to set file pointer to beginning c?
What is adt in c programming?
write a program to copy the string using switch case?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What does static variable mean in c?
Explain modulus operator.
When can a far pointer be used?
Explain what are multibyte characters?
What is actual argument?
Write a program to reverse a given number in c language?
What is the right type to use for boolean values in c?
Explain how do you convert strings to numbers in c?
What is the use of volatile?