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
What is a spanning Tree?
what does static variable mean?
How do you determine the length of a string value that was stored in a variable?
How many levels of pointers can you have?
Place the #include statement must be written in the program?
Is it fine to write void main () or main () in c?
Explain Basic concepts of C language?
What are the disadvantages of c language?
Why c is called free form language?
What is a c token and types of c tokens?
Write a program with dynamically allocation of variable.
What are void pointers in c?
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.
how to find anagram without using string functions using only loops in c programming
What is the meaning of 2d in c?