Happy Codings - Programming Code Examples
Html Css Web Design Sample Codes CPlusPlus Programming Sample Codes JavaScript Programming Sample Codes C Programming Sample Codes CSharp Programming Sample Codes Java Programming Sample Codes Php Programming Sample Codes Visual Basic Programming Sample Codes


C++ Programming Code Examples

Learn C++ Language

time() Function in C++ Programming Language

time() Function in C++
Get current time. Get the current calendar time as a value of type time_t. The function returns this value, and if the argument is not a null pointer, it also sets this value to the object pointed by timer. The value returned generally represents the number of seconds since 00:00 hours, Jan 1, 1970 UTC (i.e., the current unix timestamp). Although libraries may use a different representation of time: Portable programs should not use the value returned by this function directly, but always rely on calls to other elements of the standard library to translate them to portable types (such as localtime, gmtime or difftime).
Syntax for time() Function in C++
#include <ctime> time_t time (time_t* timer);
timer
Pointer to an object of type time_t, where the time value is stored. Alternatively, this parameter can be a null pointer, in which case the parameter is not used (the function still returns a value of type time_t with the result). Function returns the current calendar time as a time_t object. If the argument is not a null pointer, the return value is the same as the one stored in the location pointed by argument timer. If the function could not retrieve the calendar time, it returns a value of -1. time_t is an alias of a fundamental arithmetic type capable of representing times.
Data races
The object pointed by timer is modified (if not null).
Exceptions
No-throw guarantee: this function never throws exceptions.
/* std::time function returns the current calendar time encoded as a std::time_t object, and also stores it in the object pointed to by arg, unless arg is a null pointer. */ /* Get the current calendar time as a value of type time_t. by time() function code example */ #include <iostream> #include <ctime> using namespace std; int main() { time_t current_time; // stores time in current_time time(¤t_time); cout << current_time; cout << " seconds has passed since 00:00:00 GMT, Jan 1, 1970"; return 0; }

Program checks whether an year ("integer") entered by the user is a leap year or not. All years which are "perfectly divisible" by 4 are leap years except for century years which is

This is a C++ Program to find the "cliques" of size k in a a graph. An "undirected graph" is formed by a finite set of vertices and a set of unordered pairs of vertices, which are called




Takes input a Character and Check it whether a 'character' is capital letter, small letter, Digit or Special character. 'All characters' like small or capital letters, digits and special characters


If a number passed to checkPrimeNumber() is a Prime Number, this function returns true, if not the Function returns false. If enters larger number first, 'code' will not work as intended.