who is the editor of 'pokemon'?
Answer / saiesh singh
a). M F Hussain b) shuncho yankichi c) santoshi hiryana
| Is This Answer Correct ? | 2 Yes | 1 No |
What are the key features of C?
what is purpose of fflush(stdin) function
can anyone please tell about the nested interrupts?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
When should structures be passed by values or by references?
What is the difference b/w Structure & Union?
Can the curly brackets { } be used to enclose a single line of code?
write a program to display the frequency of each element in a given array in c language
What are the differences between new and malloc in C?
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.