Misc Operator in C langiuage

1.) sizeof() - Returns size(in Bytes) of variable according to its data type.
यह डाटा टाइप के अनुसार वेरिएबल का साइज़(बाइट में) दर्शाता है।  
Example-
int a;
sizeof(a);

2.) Address Operator & - Returns the address of a variable.
यह वेरिएबल का एड्रेस रिटर्न करता है 
Example-
int a;
&a

3.) Value Operator * - Returns value from pointer to a variable.
यह वेरिएबल के पॉइंटर से वैल्यू रिटर्न करता है 
Example-
int a,*p;
p=&a;
*p;

No comments:

Post a Comment