photo

Manish Kumar


Last seen: 4 years ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Pausing code for some time
You can use pause function. pause(n); It will pause your code execution for n seconds. pause(n);

4 years ago | 0

Answered
"while" loop nested within "for" loop
n=10; ans=0; for i=1:n j=0; while j<i ans=i+j; end end

4 years ago | 1