write a program in c language to print your bio-data on the
screen by using functions.
Answer Posted / karan panwar
#include<stdio.h>
#include<conio.h>
void main()
{
clrser();
char n[],fn[],add[],qu;
printf("karan kumar panwar");
printf("prahlad panwar");
printf("h.no.38-b railway training centre near shukhadiya cracle");
printf("secondary & senior secondary passed");
getch();
}
| Is This Answer Correct ? | 21 Yes | 34 No |
Post New Answer View All Answers
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Can the size of an array be declared at runtime?
How to write a multi-statement macro?
Difference between Function to pointer and pointer to function
what is the structure pointer?
Is there anything like an ifdef for typedefs?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What happens if a header file is included twice?
What does return 1 means in c?
why we wont use '&' sing in aceesing the string using scanf
What is the difference between array_name and &array_name?
Differentiate between functions getch() and getche().
What is typedef?
What is the difference between break and continue?
Which is an example of a structural homology?