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
What is pointers in c with example?
Explain output of printf("Hello World"-'A'+'B'); ?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is 2c dna?
what are # pragma staments?
Is c++ based on c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is sizeof int in c?
What is meant by initialization and how we initialize a variable?
Using which language Test cases are added in .ptu file of RTRT unit testing???
What is a lvalue
What is the general form of function in c?
What are linker error?
Explain what is the difference between #include and #include 'file' ?
Can stdout be forced to print somewhere other than the screen?