answersLogoWhite

0

time in hours second minute

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is single programming operating system?

A single program operating system allows only one program to run at a time.


C plus plus program to find the current time?

#include <iostream> #include <ctime> using namespace std; int main() { time_t rawtime; struct TM *timeinfo; while(true) { time(&rawtime); timeinfo = localtime(&rawtime); cout << "Current local time & date: " << asctime(timeinfo) << endl; system("cls"); } return 0; }


Can someone debug this C plus plus program?

#include <iostream> using namespace std; void main ( ) { char pass1; char pass2; char pass3; char pass4; cout << "What is the password" << endl; cin >> pass1; if (pass1 please no more) { cout << "Ok Ok. by the way, that was a complete waste of your time." << endl; } } } } system ("PAUSE"); }


What is debugging in c plus plus?

Debugging is a way of running the program to locate any errors that may arise at run-time.


Write a c program using system calls which accepts a file name as parameterthe program should be designed in such a way that only one session should be permitted to read the date at any point of time?

Harry S. Truman


What are examples of operating system functions?

System Time The program loader Drivers Logon are some examples


Give some example of visual basic program?

Billing System, Time Keeping System, Point of Sales System, Reservation System


How long does lsa stay in body?

LSA and LSD do not show up in any standardized drug test. plus they are in your system for a verrrry short time after using them. consistent user or not.


How do you unistall turbo c plus plus from any system when it has been installed in E drive?

Use the Turbo C uninstaller. It doesn't matter what drive or partition a program is installed upon -- the installer records this information so the program can be uninstalled at a later time. The uninstaller can be found in the Windows start menu or in the Add/Remove Programs applet in the Control Panel.


How do you write a program in C plus plus that displays a breakdown of words?

Parse the text, one word at a time. Convert the word to lowercase if necessary, than push the word onto a set, using the word as the key. When complete, the set will contain only the unique words.


Is it possible to write a program using a micro-controller such that it can read the time and operate at a given time?

Yes.


How do you write a C program to calculate execution time of a program using all C sorts?

To calculate the execution time of a C program using different sorting algorithms, you can utilize the clock() function from the time.h library. First, include the library at the top of your program. Before calling the sorting function, capture the current clock time using clock_t start = clock();. After the sorting is complete, capture the end time with clock_t end = clock(); and calculate the execution time in seconds using (double)(end - start) / CLOCKS_PER_SEC. This will give you the time taken by the sorting algorithm to execute.