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


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }

27 Answers   Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,


Place the #include statement must be written in the program?

0 Answers  


main() { char *p; p="Hello"; printf("%c\n",*&*p); }

2 Answers   ME,


discuss the steps needed to get a program from source code to executable in a system?

1 Answers  


What is the use of #include in c?

0 Answers  






How can I automatically locate a programs configuration files in the same directory as the executable?

0 Answers  


Explain what does a function declared as pascal do differently?

0 Answers  


Explain can static variables be declared in a header file?

0 Answers  


When should structures be passed by values or by references?

0 Answers   Adobe,


True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type

7 Answers  


write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.

0 Answers   BirlaSoft,


Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?

6 Answers  


Categories