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
What is the best way to comment out a section of code that contains comments?
What are data types in c language?
explain what is a newline escape sequence?
What is meant by gets in c?
Differentiate between full, complete & perfect binary trees.
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Is c procedural or object oriented?
can anyone suggest some site name..where i can get some good data structure puzzles???
What are local variables c?
Write a program to print factorial of given number using recursion?
What is #pragma statements?
What is infinite loop?
What is the difference between malloc() and calloc() function in c language?
#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); }
What are the functions to open and close file in c language?