Open main menu

CDOT Wiki β

Changes

OOP344 - FjXR - 20102

42 bytes added, 13:27, 31 May 2010
no edit summary
== Common Hungarian Notation Prefixes ==
<p>
Prefixes are often combined to form other prefixes, as when p and sz are joined to form psz, which stands for "pointer to zero-terminated string." </p>
<p>(See Example Below)</p><p>int nCount = 45 ;<br/>char szUserName[20];<br/>char* pszUserName[20];<br/>char cLetter = 'a' ;<br/></p>
{| class="wikitable sortable" border="1" cellpadding="5" align="left"
 
Prefixes are often combined to form other prefixes, as when p and sz are joined to form psz, which stands for "pointer to zero-terminated string."
 
See Example Below
 
int nCount = 45 ;
char szUserName[20];
char* pszUserName[20];
char cLetter = 'a' ;
! Prefix !! Data Type
1
edit