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
Is there a way to switch on strings?
What is a null string in c?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
What is typedef example?
Is javascript based on c?
Which function in C can be used to append a string to another string?
How do you determine whether to use a stream function or a low-level function?
Is it better to bitshift a value than to multiply by 2?
Is c dynamically typed?
What Is The Difference Between Null And Void Pointer?
What are loops c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is the scope of an external variable in c?
How can I get the current date or time of day in a c program?
What is console in c language?