***** That is a very good observation. You can go ahead with that method. We added those loops for simpler explanation.
@roshankharke37258 жыл бұрын
can you do c graphics tutorial????Your tutorial is very helpful
@gudiyakumari-mi9ef8 жыл бұрын
thanku sir its really awsm..your way of teaching is very nyc
@imjikooker90554 жыл бұрын
Thank you so much.. bcz of this i can do easily
@ankitaatta30617 жыл бұрын
what abt the 1 line gap btwn upper hlf n lower hlf? and why do u need to use 12 loops in totl fr printing jst ths??
@cmalathichandrasekar75116 жыл бұрын
thank you so much sir.it is very useful to me
@sowjanyayellumahanti84608 жыл бұрын
Pattern printing is just awesome. I liked it. But what about the middle row sir...? we got an empty row there. Is there any logic to remove that row...? please make me clear. Thank you.
@anshuld5477 жыл бұрын
How to remove the middle gap(between upper and lower parts) in the output??
@adityakalkeri806310 жыл бұрын
Cant we just start the colSpace " " from 0 and then adding it gradually....i.e., for(colSpace=0;colSpace
@akhilrekhapalli32279 жыл бұрын
Tell me how would we make a star from while loop in C language
@luckyk47318 жыл бұрын
i could not made diamond through ur pattern. how can i do it??????
@mohammedshujaatsayani472210 жыл бұрын
I watched all your videos on pattern printing . I still have a few doubts about the FOR loop Can you please provide me with the link of the video in which you have done the basic FOR loop structure and please if you could also provide some help with while loops and do while loops.Thanks for ur help in advance
@wethecomputerguys990310 жыл бұрын
For loop : wethecomputerguys.com/2014/02/25/c-programming-language-tutorial-lecture-12-iteration-statementfor-loop/ While and do while : wethecomputerguys.com/2014/02/25/c-programming-language-tutorial-lecture-13-iteration-statements-while-and-do-while/ Hope this would be helpful...
@RajbirSingh-dt8wl7 жыл бұрын
how to print only a diamond shape
@shuvonkarpaul28189 жыл бұрын
Did the pattern exactly match ? Confused:-Row no 5,6,7:- one star,space and again one star ! In the pattern there was no one star twice ! Plz help brother.
@ombothre23504 жыл бұрын
To do it in one loop in python : import math2 # user defined n=int(input("Enter a number : ")) n=math2.odd(n) m=n//2 for i in range(n): if(i>m-1): i=i-m+1 print("* "*i," "*math2.mod((i-m)*2),"* "*i,sep='') else: print("* "*(m-i)," "*(i*2),"* "*(m-i),sep='')
@ombothre23504 жыл бұрын
We can do it in one loop too
@palurisaisree51325 жыл бұрын
pls telll the code for this pattern using python!!pls!!
@ombothre23504 жыл бұрын
import math2 # user defined n=int(input("Enter a number : ")) n=math2.odd(n) m=n//2 for i in range(n): if(i>m-1): i=i-m+1 print("* "*i," "*math2.mod((i-m)*2),"* "*i,sep='') else: print("* "*(m-i)," "*(i*2),"* "*(m-i),sep='')
@sarahuda30829 жыл бұрын
i want that shape .. ABCDEFFEDCBA ABCDE EDCBA ABCD DCBA ABC CBA AB BA A A so what i have to do??
@bayroncastillo76536 жыл бұрын
you are outstanding
@smrutisahu98127 жыл бұрын
How to print a circle using star ,plz tell me the logic
@benedictgalvez54068 жыл бұрын
Can you covert it in visual studio 2012? Thanks!
@suvethar87266 жыл бұрын
Tq it is very helpful
@vetukurisrivallisowmya33459 жыл бұрын
nice i want in rectangie&cricle we can do it
@sumitdyavanur80665 жыл бұрын
How to print string like hello without using string operations
@jahirulislammonir34909 жыл бұрын
nice video....
@srilathapuvvadi88999 жыл бұрын
Instead of stars i would like to print numbers
@swamishekhar80459 жыл бұрын
give some new pattern sir..
@technicalilm89997 жыл бұрын
great
@ombothre23504 жыл бұрын
Same in python but with one loop only import math2 # user defined n=int(input("Enter a number : ")) n=math2.odd(n) m=n//2 for i in range(n): if(i>m-1): i=i-m+1 print("* "*i," "*math2.mod((i-m)*2),"* "*i,sep='' ") else: print("* "*(m-i)," "*(i*2),"* "*(m-i),sep='' ")
@samanta_sou7 жыл бұрын
* * * * * * * * * * * * Would anyone help me solving this pattern in C programming? Thank You :D
@prajitbanerjee82266 жыл бұрын
#include using namespace std; int main() { int i,j,n,sp; cin>>n; for(i=1;i
@niranjanpradhan320110 жыл бұрын
#### # # # # #### please sir print this minimum number of for loop
@wethecomputerguys990310 жыл бұрын
NIRANJAN PRADHAN Check out this link it should help you wethecomputerguys.com/2014/09/04/pattern-printing-27/
@LearnBigEarnBig9 жыл бұрын
pls help to do the pattern Pattern printing * * * * * * * * * * * * * *
@LearnBigEarnBig9 жыл бұрын
M SWASTIK SUDARSHANY Parallelogram
@wethecomputerguys99039 жыл бұрын
M SWASTIK SUDARSHANY Check this : wethecomputerguys.com/2014/11/12/pattern-printing-38/ Hope it helps you
@prajitbanerjee82266 жыл бұрын
#include using namespace std; int main() { int i,j,n,sp; cin>>n; for(i=1;i=1;sp--) cout
@sunilsharma96119 жыл бұрын
******** ** ** ** ** ********Sir plz solve this pattern
@naresh22324635 жыл бұрын
Instead of so many for loops you just could use recursion
@mahendrabohra62419 жыл бұрын
HEAXVIE HEA VIE HE IE H H please solve the problem
@junaidali18539 жыл бұрын
+Mahendra Bohra I can do this for ABCDCBA ABC CBA AB BA A A
@R7amos3 жыл бұрын
bete pahile thik se baat krna sikhle phir sikhanna