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
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Explain how can I pad a string to a known length?
Explain how can I remove the trailing spaces from a string?
What are linker error?
Why c is called a middle level language?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is putchar() function?
What is bss in c?
Explain built-in function?
Explain how do you convert strings to numbers in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is integer constants?
List the variables are used for writing doubly linked list program.
What is dynamic variable in c?