Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a program in c language to print your bio-data on the
screen by using functions.

Answer Posted / shonali

#include<stdio.h>
void main()
{
char n[],fn[],add[],qu;
printf("Enter name of the student");
scanf("%s\n",&n);
printf("Father's Name");
scanf("%s\n",&fn);
printf("Address");
scanf("%s\n",&add);
printf("qualification");
scanf("%s\n",qu);
}

Is This Answer Correct ?    212 Yes 114 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the best way to comment out a section of code that contains comments?

1335


What are data types in c language?

1050


explain what is a newline escape sequence?

1084


What is meant by gets in c?

1177


Differentiate between full, complete & perfect binary trees.

1088


a value that does not change during program execution a) variabe b) argument c) parameter d) none

1233


Is c procedural or object oriented?

999


can anyone suggest some site name..where i can get some good data structure puzzles???

2082


What are local variables c?

1007


Write a program to print factorial of given number using recursion?

1003


What is #pragma statements?

1095


What is infinite loop?

1080


What is the difference between malloc() and calloc() function in c language?

1072


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

1150


What are the functions to open and close file in c language?

1196