Tell me the use of bit field in c language?
No Answer is Posted For this Question
Be the First to Post Answer
How do I copy files?
Why malloc is faster than calloc?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
Write a code on reverse string and its complexity.
How can I find out the size of a file, prior to reading it in?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
every function has return the value?
how can we Declare a variable in c without defining it.
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Two's compliment of -5
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.