Explain the difference between malloc() and calloc() function?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Explain modulus operator.
What are local static variables? How can you use them?
What do you mean by keywords in c?
Why the use of alloca() is discouraged?
Can we use any name in place of argv and argc as command line arguments?
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
What are examples of structures?
How can I determine whether a machines byte order is big-endian or little-endian?
Write a program which returns the first non repetitive character in the string?
how we can say java is platform independent, while we require JVM for that particular Operating System?
What is #include stdlib h?