C Practical and Assignment Programs-Pattern Printing 10

  Рет қаралды 100,325

We The Computer Guys

We The Computer Guys

Күн бұрын

Пікірлер
@wethecomputerguys9903
@wethecomputerguys9903 10 жыл бұрын
***** That is a very good observation. You can go ahead with that method. We added those loops for simpler explanation.
@roshankharke3725
@roshankharke3725 8 жыл бұрын
can you do c graphics tutorial????Your tutorial is very helpful
@gudiyakumari-mi9ef
@gudiyakumari-mi9ef 8 жыл бұрын
thanku sir its really awsm..your way of teaching is very nyc
@imjikooker9055
@imjikooker9055 4 жыл бұрын
Thank you so much.. bcz of this i can do easily
@ankitaatta3061
@ankitaatta3061 7 жыл бұрын
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??
@cmalathichandrasekar7511
@cmalathichandrasekar7511 6 жыл бұрын
thank you so much sir.it is very useful to me
@sowjanyayellumahanti8460
@sowjanyayellumahanti8460 8 жыл бұрын
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.
@anshuld547
@anshuld547 7 жыл бұрын
How to remove the middle gap(between upper and lower parts) in the output??
@adityakalkeri8063
@adityakalkeri8063 10 жыл бұрын
Cant we just start the colSpace " " from 0 and then adding it gradually....i.e., for(colSpace=0;colSpace
@akhilrekhapalli3227
@akhilrekhapalli3227 9 жыл бұрын
Tell me how would we make a star from while loop in C language
@luckyk4731
@luckyk4731 8 жыл бұрын
i could not made diamond through ur pattern. how can i do it??????
@mohammedshujaatsayani4722
@mohammedshujaatsayani4722 10 жыл бұрын
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
@wethecomputerguys9903
@wethecomputerguys9903 10 жыл бұрын
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-dt8wl
@RajbirSingh-dt8wl 7 жыл бұрын
how to print only a diamond shape
@shuvonkarpaul2818
@shuvonkarpaul2818 9 жыл бұрын
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.
@ombothre2350
@ombothre2350 4 жыл бұрын
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='')
@ombothre2350
@ombothre2350 4 жыл бұрын
We can do it in one loop too
@palurisaisree5132
@palurisaisree5132 5 жыл бұрын
pls telll the code for this pattern using python!!pls!!
@ombothre2350
@ombothre2350 4 жыл бұрын
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='')
@sarahuda3082
@sarahuda3082 9 жыл бұрын
i want that shape .. ABCDEFFEDCBA ABCDE EDCBA ABCD DCBA ABC CBA AB BA A A so what i have to do??
@bayroncastillo7653
@bayroncastillo7653 6 жыл бұрын
you are outstanding
@smrutisahu9812
@smrutisahu9812 7 жыл бұрын
How to print a circle using star ,plz tell me the logic
@benedictgalvez5406
@benedictgalvez5406 8 жыл бұрын
Can you covert it in visual studio 2012? Thanks!
@suvethar8726
@suvethar8726 6 жыл бұрын
Tq it is very helpful
@vetukurisrivallisowmya3345
@vetukurisrivallisowmya3345 9 жыл бұрын
nice i want in rectangie&cricle we can do it
@sumitdyavanur8066
@sumitdyavanur8066 5 жыл бұрын
How to print string like hello without using string operations
@jahirulislammonir3490
@jahirulislammonir3490 9 жыл бұрын
nice video....
@srilathapuvvadi8899
@srilathapuvvadi8899 9 жыл бұрын
Instead of stars i would like to print numbers
@swamishekhar8045
@swamishekhar8045 9 жыл бұрын
give some new pattern sir..
@technicalilm8999
@technicalilm8999 7 жыл бұрын
great
@ombothre2350
@ombothre2350 4 жыл бұрын
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_sou
@samanta_sou 7 жыл бұрын
* * * * * * * * * * * * Would anyone help me solving this pattern in C programming? Thank You :D
@prajitbanerjee8226
@prajitbanerjee8226 6 жыл бұрын
#include using namespace std; int main() { int i,j,n,sp; cin>>n; for(i=1;i
@niranjanpradhan3201
@niranjanpradhan3201 10 жыл бұрын
#### # # # # #### please sir print this minimum number of for loop
@wethecomputerguys9903
@wethecomputerguys9903 10 жыл бұрын
NIRANJAN PRADHAN Check out this link it should help you wethecomputerguys.com/2014/09/04/pattern-printing-27/
@LearnBigEarnBig
@LearnBigEarnBig 9 жыл бұрын
pls help to do the pattern Pattern printing * * * * * * * * * * * * * *
@LearnBigEarnBig
@LearnBigEarnBig 9 жыл бұрын
M SWASTIK SUDARSHANY Parallelogram
@wethecomputerguys9903
@wethecomputerguys9903 9 жыл бұрын
M SWASTIK SUDARSHANY Check this : wethecomputerguys.com/2014/11/12/pattern-printing-38/ Hope it helps you
@prajitbanerjee8226
@prajitbanerjee8226 6 жыл бұрын
#include using namespace std; int main() { int i,j,n,sp; cin>>n; for(i=1;i=1;sp--) cout
@sunilsharma9611
@sunilsharma9611 9 жыл бұрын
******** ** ** ** ** ********Sir plz solve this pattern
@naresh2232463
@naresh2232463 5 жыл бұрын
Instead of so many for loops you just could use recursion
@mahendrabohra6241
@mahendrabohra6241 9 жыл бұрын
HEAXVIE HEA VIE HE IE H H please solve the problem
@junaidali1853
@junaidali1853 9 жыл бұрын
+Mahendra Bohra I can do this for ABCDCBA ABC CBA AB BA A A
@R7amos
@R7amos 3 жыл бұрын
bete pahile thik se baat krna sikhle phir sikhanna
C Practical and Assignment Programs-Pattern Printing  11
3:42
We The Computer Guys
Рет қаралды 7 М.
Special Programs in C − Pyramid of Stars
11:06
Neso Academy
Рет қаралды 899 М.
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
The Dome Paradox: A Loophole in Newton's Laws
22:59
Up and Atom
Рет қаралды 671 М.
Premature Optimization
12:39
CodeAesthetic
Рет қаралды 843 М.
Print Diamond pattern using C
4:48
Gourav Malviya (Gourav Malviya)
Рет қаралды 39 М.
POINTERS in C++
16:59
The Cherno
Рет қаралды 1 МЛН
Pattern Programs Tutorial: Part 22 - Plus, X, Square pattern and more...
17:17
Programmer ONE - Sumit Tiwari - SoftEthics
Рет қаралды 135 М.
How Villagers "Read" Your Letters in Animal Crossing
9:47
Hunter R.
Рет қаралды 531 М.
Minecraft images that are 100% wholesome to end the year.
11:23
Phoenix SC
Рет қаралды 397 М.
C Programming Tutorial   28 3.Number Pattern
4:59
Telusko
Рет қаралды 46 М.
1 Year of Coding in 8 Minutes
7:31
Beckett Oliphant
Рет қаралды 1,1 М.