fork download
  1. // Lab 8, Working with structs
  2. // Programmer : Maiar Khattab
  3. // Editor(s) used : Code Blocks 13.12
  4. // Compiler(s) used : Code Blocks 13.12
  5.  
  6. #include <stdio.h>
  7. int main()
  8. {
  9. int c = 5, no = 10;
  10. do {
  11. no /= c;
  12.  
  13. } while(c--);
  14.  
  15. printf ("%dn", no);
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5272KB
stdin
 
stdout
0n