Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

C++ Tutorial

C++ HOME C++ Intro C++ Get Started C++ Syntax C++ Output C++ Comments C++ Variables C++ User Input C++ Data Types C++ Operators C++ Strings C++ Math C++ Booleans C++ If...Else C++ Switch C++ While Loop C++ For Loop C++ Break/Continue C++ Arrays C++ Structures C++ Enums C++ References C++ Pointers

C++ Functions

C++ Functions C++ Function Parameters C++ Function Overloading C++ Scope C++ Recursion

C++ Classes

C++ OOP C++ Classes/Objects C++ Class Methods C++ Constructors C++ Access Specifiers C++ Encapsulation C++ Inheritance C++ Polymorphism C++ Files C++ Exceptions C++ Date

C++ Data Structures

C++ Data Structures & STL C++ Vectors C++ List C++ Stacks C++ Queues C++ Deque C++ Sets C++ Maps C++ Iterators C++ Algorithms

C++ How To

C++ Add Two Numbers C++ Random Numbers

C++ Reference

C++ Reference C++ Keywords C++ <iostream> C++ <fstream> C++ <cmath> C++ <string> C++ <cstring> C++ <ctime> C++ <vector> C++ <algorithm>

C++ Examples

C++ Examples C++ Real-Life Examples C++ Compiler C++ Exercises C++ Quiz C++ Syllabus C++ Study Plan C++ Certificate


C++ ctime localtime() Function

❮ ctime Functions


Example

Create a tm structure for the current time in the computer's local time zone:

time_t now;
struct tm * date;

time(&now);
date = localtime(&now);

cout << "Local time: " << asctime(date);
Try it Yourself »

Definition and Usage

The localtime() function returns a tm structure with date information for a timestamp in the computer's local timezone.

The localtime() function is defined in the <ctime> header file.

The returned tm structure has the following members:

  • tm_sec - The seconds within a minute
  • tm_min - The minutes within an hour
  • tm_hour - The hour within a day (from 0 to 23)
  • tm_mday - The day of the month
  • tm_mon - The month (from 0 to 11 starting with January)
  • tm_year - The number of years since 1900
  • tm_wday - The weekday (from 0 to 6 starting with Sunday)
  • tm_yday - The day of the year (from 0 to 365 with 0 being January 1)
  • tm_isdst - Positive when daylight saving time is in effect, zero when not in effect and negative when unknown

Tip: Use the time() or mktime() functions to create a timestamp.


Syntax

localtime(time_t * timestamp);

The time_t data type represents a number.

Parameter Values

Parameter Description
timestamp Required. A pointer to a timestamp.

Technical Details

Returns: A tm structure representing the date and time of the timestamp in the computer's local time zone.

❮ ctime Functions