Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pjcrazy

    I want to put a 3 second delay in my program

    use the clock() function like this #include <time.h> int main() { //Following code stops program for 3 seconds put //command after the while loop not in the {} clock_t start_time; start_time = clock(); while((clock() - start_ time) < 3 * CLOCKS_PER_SEC) { }...

Part and Inventory Search

Back
Top