03:21:11
 Frissítés
Keresés | Új hozzászólás
 » Isten hozott, kedves Vendég ! Fórumlakók | GY.I.K. | Bejelentkezés | Regisztráció 
 » Szakmai
Téma: C++
Rendes Kis
Olvasta: 2 | Válasz | 2016. január 05. 20:23 | Sorszám: 63
www.cplusplus.com/reference/cstdio/fgets/?kw=fgets
Rendes Kis
Olvasta: 1 | Válasz | 2015. december 05. 17:37 | Sorszám: 62
WM_MOUSEMOVE
... http://msdn.microsoft.com/en-us/library/windows/desktop/ms645616%28v=vs.85%29 ...
Rendes Kis
Olvasta: 1 | Válasz | 2015. április 09. 17:55 | Sorszám: 61
int strcmp ( const char * str1, const char * str2 );
Returns an integral value indicating the relationship between the strings:
return value | indicates
<0 | the first character that does not match has a lower value in ptr1 than in ptr2
0 | the contents of both strings are equal
>0 | the first character that does not match has a greater value in ptr1 than in ptr2
... www.cplusplus.com/reference/cstring/strcmp/?kw=strcmp
Rendes Kis
Olvasta: 2 | Válasz | 2014. november 28. 21:42 | Sorszám: 60
strscan: http://www.cplusplus.com/reference/cstring/strstr/
Rendes Kis
Olvasta: 1 | Válasz | 2014. november 03. 22:31 | Sorszám: 59
set time:

#include <time.h>

int stime(time_t *t);
Rendes Kis
Olvasta: 1 | Válasz | 2014. november 03. 21:58 | Sorszám: 58
time in microseconds:
struct timeval tv;
struct timezone tz;
struct tm *tm;
gettimeofday(&tv, &tz);
tm=localtime(&tv.tv_sec);
printf(" %d:%02d:%02d %d \n", tm->tm_hour, tm->tm_min,
tm->tm_sec, tv.tv_usec);
... http://www.unix.com/programming/1991-time-microseconds.html
panda
Olvasta: 1 | Válasz | 2014. július 06. 22:18 | Sorszám: 57
még gondolkodik ...
panda
Olvasta: 1 | Válasz | 2014. július 06. 22:01 | Sorszám: 56
Mindjárt jön tiszavirág, és elmagyarázza hogy tévedtem ..
panda
Olvasta: 1 | Válasz | 2014. július 05. 14:10 | Sorszám: 55
1+2=3
Rendes Kis
Olvasta: 1 | Válasz | 2014. július 03. 11:13 | Sorszám: 54
#ifdef, #ifndef
... http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40F_HTML/AQTLTBTE/DOCU ...
Rendes Kis
Olvasta: 2 | Válasz | 2013. november 22. 20:26 | Sorszám: 53
Idézet:
gmtime_s, _gmtime32_s, _gmtime64_s
Visual Studio 2013
Other Versions
This topic has not yet been rated - Rate this topic

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Converts a time value to a structure. These are versions of _gmtime32, _gmtime64 with security enhancements as described in Security Features in the CRT.

errno_t gmtime_s(
struct tm* _tm,
const __time_t* time
);
errno_t _gmtime32_s(
struct tm* _tm,
const __time32_t* time
);
errno_t _gmtime64_s(
struct tm* _tm,
const __time64_t* time
);

... http://msdn.microsoft.com/en-us/library/3stkd9be.aspx

Kérdés: hogyan merjen a szegényember olyan adattípust használni, amék 2 aláhúzással kezdődik ??
Rendes Kis
Olvasta: 2 | Válasz | 2013. november 18. 13:20 | Sorszám: 52
int i;
for(i = 0; i < my_string.length(); i++)
{
cout<<my_string[ i ];
}
Rendes Kis
Olvasta: 1 | Válasz | 2013. november 11. 19:40 | Sorszám: 51
http://www.cprogramming.com/tutorial/string.html
Rendes Kis
Olvasta: 1 | Válasz | 2013. november 11. 19:21 | Sorszám: 50
Már megint: az std::string -et nem lehet összehasonlítani a char* -gal ...
Rendes Kis
Olvasta: 1 | Válasz | 2013. augusztus 07. 06:29 | Sorszám: 49
Vesd le ruhád és megmondom mit csináltál a nyáron.
... www.facebook.com/photo.php?fbid=688027211211442&set=a.113724545308381.19230.1 ...
Rendes Kis
Olvasta: 1 | Válasz | 2013. május 31. 08:16 | Sorszám: 48
void SleepMs(int ms) {
usleep(ms*1000); //convert to microseconds
return;
}
... http://forums.devshed.com/c-programming-42/linux-version-of-sleep-need-it-in- ...
panda
Olvasta: 1 | Válasz | 2013. május 24. 21:06 | Sorszám: 47
http://www.cppblog.com/hktk/category/7091.html
Rendes Kis
Olvasta: 1 | Válasz | 2013. május 24. 14:35 | Sorszám: 46
#include <math.h>
...
// Calculates log2 of number.
double Log2( double n )
{
// log(n)/log(2) is log2.
return log( n ) / log( 2 );
}
http://stackoverflow.com/questions/758001/log2-not-found-in-my-math-h
keresztkem
Olvasta: 1 | Válasz | 2013. május 23. 04:41 | Sorszám: 45
Hülye!
keresztkem
panda
Olvasta: 1 | Válasz | 2013. május 22. 22:16 | Sorszám: 44
Persze. És kacsaláb.
Ti hányan vagytok, élemedett???
keresztkem
Olvasta: 1 | Válasz | 2013. május 19. 14:15 | Sorszám: 43
Ha nincs, akkor megcsinálja önmagának--hogy a PressAnyKey-funkciót--mégiscsak realizálhassa egy integer szubrutin révén-- jelesül azzal a rutinnal, ami:
Lásd mint alant!
int PressAnyKey( const char *prompt )
-al kezdődik.Függetlenűl attól aktiválható hogy a C++ az (1) cout<<'\a'; kiértékelésében hogyan "vergődik zöldágra", mire jut? Haa reláció kiértékelésének eredménye: 'false, úgy meghívható ez az int PressAnyKey rutin, s a "ketyere" mehet tovább.
keresztkem
mackó
Olvasta: 1 | Válasz | 2013. május 08. 09:29 | Sorszám: 42
Rendes Kis
Olvasta: 1 | Válasz | 2013. május 08. 09:23 | Sorszám: 41
Köszönöm !
mackó
Olvasta: 1 | Válasz | 2013. május 08. 08:01 | Sorszám: 40
http://www.cplusplus.com/forum/articles/7312/
Rendes Kis
Olvasta: 1 | Válasz | 2013. május 08. 06:35 | Sorszám: 39
(Olyan nincs a C-ben, hogy "Press any key" ??)
Tovább ...
Jelmagyarázat    Van új hozzászólás
   Ezeket a hozzászólásokat már láttad
... Hibabejelentés | | | Gondola ...