This blog will cover all important aspects of 'C' 'C++', 'Data Structures in C' and other Technical stuffs. In this blog you will find good C Interview Questions Answers. I will be posting both multiple choice and subjective type C interview questions and answers. Tutorials will be posted from time to time that will focus on problem solving.
Saturday, May 21, 2011
C program to explain use of function
#include #include void print(void); int main() { int i; for(i=0;i<5;i++) { print(); printf("\n"); }
getch(); } void print() { printf("Welcome to c"); }
No comments:
Post a Comment