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

Answers were Sorted based on User's Feedback



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

Answer / 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 ?    209 Yes 112 No

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

Answer / advait shastri

#include<stdio.h>
#include<conio.h>
void main()
{
char name[15],lname[15];
long contact;
char city[15];
clrscr();
printf("\nEnter your full name:");
scanf("%s %s",&name,&lname);
printf("\nEnter your contact:");
scanf("%ld",&contact);
printf("\nEnter your city:");
scanf("%s",&city);
printf("\nYour name:%s %s",name,lname);
printf("\nYour contact:%ld",contact);
printf("\nYour city:%s",city);
getch();
}

Is This Answer Correct ?    78 Yes 49 No

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

Answer / jeyasuriya m

#include<stdio.h>
int main()
{
char name[20],fathername[20],qualification[20];
int age,dob;
printf("Student name :");
scanf("%s",&name);
printf("Father name :");
scanf("%s",&fathername);
printf("Qualification :");
scanf("%s",&qualification);
printf("Age :");
scanf("%d",&age);
printf("Date Of Birth :");
scanf("%d",&dob);
printf("Student name :%s
",name);
printf("Father name :%s
",fathername);
printf("Qualification :%s
",qualification);
printf("Age :%d
",age);
printf("Date Of Birth :%d
",dob);

}

Is This Answer Correct ?    39 Yes 20 No

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

Answer / sourabh kumar saw

Boi

Is This Answer Correct ?    5 Yes 8 No

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

Answer / ogaleye victor

#include<stdio.h>
void main()
char name address qualification age
printf("Ayomide Victor");
printf("32 anifowobi crescent Ikeja");
printf("B.sc computer science, ");
printf("19 years");

Is This Answer Correct ?    2 Yes 7 No

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

Answer / 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

More C Interview Questions

How can you allocate arrays or structures bigger than 64K?

0 Answers  


c program to subtract between two numbers without using '-' sign and subtract function.

1 Answers  


Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .

2 Answers   Oracle,


What is function definition in c?

0 Answers  


Derive the complexity expression for AVL tree?

1 Answers  






If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???

3 Answers   Amdocs, IBM,


what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);

10 Answers   IBM,


what is the self-referential structure?

1 Answers  


What is typedef example?

0 Answers  


44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?

3 Answers  


a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none

0 Answers  


In c programming language, how many parameters can be passed to a function ?

0 Answers  


Categories