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 does the file stdio.h contain?
What is a sequential access file?
I need testPalindrome and removeSpace
#include
Why can't I perform arithmetic on a void* pointer?
Explain what is output redirection?
How do you print only part of a string?
i got 75% in all semester am i eligible for your company
Can you explain the four storage classes in C?
What is array of structure in c programming?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is a pointer in c?
Why does everyone say not to use scanf? What should I use instead?
Why do we write return 0 in c?
What is #define?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.