Cookies are small amounts of text that can be stored on the client pc by the browser. The cookie can be accessed both at the client through the use of Javascript and also at the server. While cookies can be a convenient way to store small bits of state information, it's important to keep in mind that the client browser may have been configured not to accept cookies.
In each cookie you can not save more than 4k of information. Remember clients can open cookies and see the content of a cookie so never save a password there. Cookies are usually used to save user preference information.
ASP.NET
ASP.NET Cookies Overview
Dec 22, 2009
list of data types in C C Data Types Data Types in C Learn C Basics of C Programing By Elvisjino
list of data types in C C Data Types Data Types in C Learn C Basics of C Programing By Elvisjino
C Data types.
Int
Float
Double
Char
Void
Enum
int - data type
{
int Cot;
Cot = 5;
}
float - data type
float is used to define floating point numbers.
{
float Km;
Km= 5.6;
}
double - data type
double is used to define BIG floating point numbers. It reserves twice the storage for the number. On PCs this is likely to be 8 bytes.
{
double Atoms;
Atoms = 2500000;
}
char - data type
char defines characters.
{
char Letter;
Letter = 'x';
}
Subscribe to:
Posts (Atom)


