C Codes
Beginners
C on Unix
Code Snippets
Data Structures
File Operations
Games Graphics
Gnu-Linux
Hardware
Mathematics
Miscellaneous
Small Programs
Sorting
C > C on Unix sample source codes
Program with a function display(int) to print the integers
Program with a function display(int) to print the integers #include
#include
#include
void display(int); int main(void) { int N; printf(" Enter the Number Of Time You Want To Print : "); scanf("%d", &N); display(N); printf(" "); return(0); } void display(int N) { int i; for(i = 0; i < N; i++) printf(" WWW"); }
Privacy Policy
|
Link to Us
|
Links