4. main()
{
int c=- -2;
printf("c=%d",c);
}
Can we increase size of array in c?
Explain what is a const pointer?
Explain 'bit masking'?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What are the disadvantages of c language?
Explain union.
What library is sizeof in c?
Explain how are portions of a program disabled in demo versions?
is it possible to create your own header files?
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Why do we write return 0 in c?