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
Do you know the purpose of 'register' keyword?
Can you please explain the difference between malloc() and calloc() function?
What is oops c?
What is non linear data structure in c?
Difference between macros and inline functions? Can a function be forced as inline?
What is default value of global variable in c?
What is omp_num_threads?
write a programming in c to find the sum of all elements in an array through function.
What is c method?
Is boolean a datatype in c?
What are the types of unary operators?
What are 3 types of structures?
Is main an identifier in c?
Is malloc memset faster than calloc?
Describe explain how arrays can be passed to a user defined function