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
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is the acronym for ansi?
What kind of structure is a house?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Explain what does it mean when a pointer is used in an if statement?
Explain how can you check to see whether a symbol is defined?
Which is better malloc or calloc?
Explain how do you determine a file’s attributes?
What is the stack in c?
simple program of graphics and their output display
What is sizeof int?
What is || operator and how does it function in a program?
List some applications of c programming language?
What is adt in c programming?
Explain how can I convert a string to a number?