how to find the sizof of any datatype using bit manipulations
Answer Posted / nazia wasim
the size of any datatype or a variable can b
calculated using sizeof operator .it uses one
argument as the datatype or variable name
and returns the size in bytes.syntax:-sizeof
(datatype).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does struct node * mean?
Why is c called a mid-level programming language?
Explain that why C is procedural?
Explain the use of 'auto' keyword in c programming?
Tell me when is a void pointer used?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
what are enumerations in C
What are the types of macro formats?
How can I automatically locate a programs configuration files in the same directory as the executable?
show how link list can be used to repersent the following polynomial i) 5x+2
What is static identifier?
State the difference between realloc and free.
Why & is used in scanf in c?
What is the auto keyword good for?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.