write a program in c language to print your bio-data on the
screen by using functions.
Answer Posted / 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 |
Post New Answer View All Answers
Explain what is a stream?
Can a variable be both constant and volatile?
What is floating point constants?
Define and explain about ! Operator?
What is the use of ?
Difference between Shallow copy and Deep copy?
Why do we need arrays in c?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What does the error message "DGROUP exceeds 64K" mean?
Where are local variables stored in c?
Give me the code of in-order recursive and non-recursive.
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Explain how can I avoid the abort, retry, fail messages?
There seem to be a few missing operators ..