Find how much time elapsed in this program to run


#include <time.h>
#include <stdio.h>

  main()
  {
   
   printf("Elapsed time: %u secs.\n", clock()/CLOCKS_PER_SEC);
   getch();
  }

Comments

Popular posts from this blog

Migrating database from ASP.NET Identity to ASP.NET Core Identity

Customize User's Profile in ASP.NET Identity System