Prepare for your Next Interview
|
Welcome to the Geeks Talk forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
This is a discussion on Want to know about C programs within the C and C++ forums, part of the Software Development category; What is the C program for the output 0 11 ooo 1111 00000 111111 .......? What is transport matrix in C language? What is the reverse print program in C?...
|
|||||||
|
|||
|
Want to know about C programs
What is the C program for the output 0 11 ooo 1111 00000 111111 .......?
What is transport matrix in C language? What is the reverse print program in C? |
| Sponsored Links |
|
|||
|
Re: Want to know about C programs
#include<stdio.h> ▲
#include<conio.h> ■ ▒ void main() ▒ { ▒ int i,j,k; ▒ clrscr(); ▒ for(k=1;k<=6;k++) ▒ { ▒ if(k%2==0) ▒ for(i=1;i<=k;i++) ▒ printf("1"); ▒ else ▒ for(j=1;j<=k;j++) ▒ printf("0"); ▒ } ▒ getch(); ▒ } ▒ |
|
|||
|
Re: Want to know about C programs
#include<stdio.h>
main() { int n,i,j; printf("Enter N value\n"); scanf("%d",&n); for(i=0;i<n;i++) { if( i%2 == 0) { for(j=0;j<=i;j++) printf("0"); printf(" "); } else { for(j=0;j<=i;j++) printf("1"); printf(" "); } } printf("\n"); } |
| The Following User Says Thank You to raja7799 For This Useful Post: | ||
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Overloading Sub Programs. | babi_geek | Oracle | 2 | 06-09-2008 06:17 AM |
| Need free software for C programs | srinivasa.dinesh | C and C++ | 5 | 04-16-2008 06:41 AM |
| Uninstall programs easily. | JobHelper | Geeks Lounge | 0 | 03-19-2008 06:00 AM |
| JDK 1.4 programs on JDK6 | JobHelper | Java | 1 | 12-15-2006 05:58 AM |
| Graphics Programs | Remasri | Windows | 1 | 09-13-2006 02:14 PM |