C program to print 1 11111 1111
Solved
                                    
                        Amrit                    
                                    -
                            Updated on Jan 25, 2019 at 11:42 AM
                        
agrajtech17 Posts 1 Registration date Saturday May 22, 2010 Status Member Last seen May 22, 2010 - May 22, 2010 at 04:25 AM
        agrajtech17 Posts 1 Registration date Saturday May 22, 2010 Status Member Last seen May 22, 2010 - May 22, 2010 at 04:25 AM
        Related:         
- 1 11 111 pattern in c
- Write a program to print the series 1 11 111 - Best answers
- 111 in c - Best answers
- How to display 1*1 11*11 using c program? - Programming Forum
- Tentacle locker 1 - Download - Adult games
- Fc 24 free download for pc windows 11 - Download - Sports
- Ms access free download for windows 11 - Download - Databases
- Igi 1 download - Download - Shooters
1 response
                
        
                    agrajtech17
    
        
                    Posts
            
                
            1
                
                            Registration date
            Saturday May 22, 2010
                            Status
            Member
                            Last seen
            May 22, 2010
            
            
                    19
    
    
                    
Updated on Jan 25, 2019 at 11:43 AM
    Updated on Jan 25, 2019 at 11:43 AM
                        
                            
                    part one   1 11 111 11111  
part two 1 12 123 1234
            for(int i=1;i<=10;i++) 
{ 
  for(int j=1;j<=i;j++) 
    printf("%d",1); 
printf("  "); 
} 
part two 1 12 123 1234
for(int i=1;i<=10;i++) 
{ 
  for(int j=1;j<=i;j++) 
    printf("%d",j); 
printf("  "); 
} 
                
                