Please Comment, Subscribe and Click Bell Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL
@kunalpandey37825 жыл бұрын
Before going inside the while loop , the value of n must be allocated to a temp variable. Because,inside the loop the value of n is changing. So, the statement (n==sum) will give false output.
@08_ishfaqmalla575 жыл бұрын
Sir please upload the Logical c Program To Calculate the Addition and Multiplication of 3x3 Matrix.
@rmedits89185 жыл бұрын
Sir Suppose User Enter 4 Digit Number Then ?? 🤔🤔
@gugulothusharathchandra94683 жыл бұрын
We didnt include the 'r' in the main statement sir
@MKiranmai5 жыл бұрын
Sir please upload logical c Program for Fibonacci seriesa
@08_ishfaqmalla575 жыл бұрын
Manavapati Kiranmai That has been already Uploaded
@sharansharma_2 ай бұрын
thank u sir
@CrazyCrackheads7 Жыл бұрын
Sir temp==sum not n==sum Maybe u forget to change it sir Anyway tq sir..😊
@CrazyCrackheads711 ай бұрын
@Freakboy2437 yes u are correct but if we write n==sum that means it show false output because we wrote n=n/10 then at last n becomes 0 for every iteration n value changes and last becomes zero that's why we stored n value in temp (temp=n)so we have to write temp==sum not n==sum