What is context in c?
No Answer is Posted For this Question
Be the First to Post Answer
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Identify the operators that is not used with pointer a. && b. # c. * d. >>
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Are the outer parentheses in return statements really optional?
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...
What are the average number of comparisons required to sort 3 elements?
what is difference b/w extern & volatile variable??
What is the symbol indicated the c-preprocessor?
You have an int array with n elements and a structure with three int members. ie struct No { unsigned int no1; unsigned int no2; unsigned int no3; }; Point1.Lets say 1 byte in the array element is represented like this - 1st 3 bits from LSB is one number, next 2 bits are 2nd no and last 3 bits are 3rd no. Now write a function, struct No* ExtractNos(unsigned int *, int count) which extracts each byte from array and converts LSByte in the order mentioned in point1.and save it the structure no1, no2, no3. in the function struct No* ExtractNos(unsigned int *, int count), first parameter points to the base address of array and second parameter says the no of elements in the array. For example: if your array LSB is Hex F7 then result no1 = 7, no2 = 2, no3 = 7. In the same way convert all the elements from the array and save the result in array of structure.
Tell us the use of fflush() function in c language?
How macro execution is faster than function ?
how to find out the union of two character arrays?