/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
//θ―΄ζοΌδΌ ιδΈδΈͺζ 符ε·η long εζιη»ε½ζ°οΌεΉΆε¨ε½ζ°ε
ζΉεθΏδΈͺεΌγ
#include <stdio.h>
#include <time.h>
//δΌ ιη»ε½ζ°ηζι
void getSeconds(unsigned long *par);
int main()
{
unsigned long sec;
getSeconds(&sec);
printf("η§ζ°ζ―οΌ%ld\n",sec);
return 0;
}
void getSeconds(unsigned long *par)
{
*par=time(NULL); //θ·εε½εη§ζ°
return;
}