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


Please Help Members By Posting Answers For Below Questions

what do you mean by inline function in C?

619


What is a structure in c language. how to initialise a structure in c?

610


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

3503


Can you subtract pointers from each other? Why would you?

558


What is #define in c?

623






What does sizeof return c?

608


Can a function argument have default value?

675


How can I remove the trailing spaces from a string?

617


how do you execute a c program in unix.

637


What the different types of arrays in c?

615


Do string constants represent numerical values?

926


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

921


Does sprintf put null character?

604


How to declare a variable?

573


Are there constructors in c?

598