Explain how can I manipulate strings of multibyte characters?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
count the numbers between 100 and 300, that star with 2 and ends with 2
Explain how are 16- and 32-bit numbers stored?
What is string length in c?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
Explain bit masking in c?
What is size of union in c?
Which function in C can be used to append a string to another string?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38