Answer Posted / sumanta banerjee
it is a primitive datatype integer. used to declare some numeric value. Its size is 2byte.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is c language used for?
What are pointers in C? Give an example where to illustrate their significance.
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Explain is it valid to address one element beyond the end of an array?
When do we get logical errors?
Explain why C language is procedural?
What is a null pointer in c?
Explain that why C is procedural?
What is the purpose of 'register' keyword in c language?
What is a lookup table in c?
Is c procedural or functional?
Explain is it better to bitshift a value than to multiply by 2?
What is the translation phases used in c language?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
State the difference between realloc and free.