SELF
Interview
Programming
Program
write a Pgm to print this pattern:
1
23
456
456
23
1
Read Solution (Total 2)
-
- Finally I reached to a solution a lil big but still sharing it ==>
#include
#include
void main()
{
int n;
static ctr=1;
static first;
int arr[100];
int arr_ctr=0;
cout - 10 years agoHelpfull: Yes(0) No(6)
- Last solution not shown correctly i think there is a word limit again uploading
#include
#include
void main()
{
int n;
static ctr=1;
static first;
int arr[100];
int arr_ctr=0;
cout - 10 years agoHelpfull: Yes(0) No(8)
SELF Other Question