Arduino in Indian Languages
  • Home
  • Download
  • Sign In
    • Sign In
    • Sign Up


do = करो

The do loop works in the same manner as the while loop, with the exception that the condition is tested at the end of the loop, so the do loop will always run at least once.

Example

do
{
    // statement block
} while (test condition); 
	

Have a suggestion for a better local language word for 'do'?


Discuss