![]() |
I need your help
hello guys
this is my first post in here, I hope you will help me guys I tried many time but I couldn't get the required pattern write a c program to generate the pattern shown using nested for loop 1 01 101 0101 and 0 12 345 6789 |
Re: I need your help
I think this is your home work . Try by your own . If you struck any where then post here .
|
Re: I need your help
Take it step by step try to find some 'pattern' that is there in the output.Try to from a logic on how you could print that than put something over here.Its not that difficult but try yourself.
|
Re: I need your help
this will give you the opposite from what you want in 1)
do the rest by yourself (hint:you must add 1 char and 1 number in order to work as you want...but where?) Code:
#include <stdio.h>output --------- 0 10 010 1010 with this try and 2) |
Re: I need your help
Thank you virxen so much
I tried the second but I couldn't get the right answer Code:
#include <stdio.h>1 23 345 567 instead of getting 1 23 345 6789 can anyone help me to correct my answer |
Re: I need your help
sorry this is the code
Code:
#include <stdio.h>and the output was 0 12 234 3456 instead of getting 0 12 345 6789 what's wrong in the code so I can get the right answer |
Re: I need your help
Your code displays on each line values from i (which increases by 1 each new line) to i+j. But you want each line to begin with the last number displayed, plus one.
So how about a counter that just increases each time you print something? Then print the counter instead of trying to calculate something from i and j. |
Re: I need your help
Because you tried to code i will give you the answer for a,b.
Code:
#include <stdio.h> |
| All times are GMT +5.5. The time now is 10:14. |