What is meant by 'bit masking'?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of using new operator as compared to the function malloc ()?
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
What is pass by value in c?
What is call by reference in functions?
why we use "include" word before calling the header file. is there any special name for that include??????
Explain what are the advantages and disadvantages of a heap?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
Given an unsigned integer, find if the number is power of 2?
Is it better to use a macro or a function?
what is the difference between while and do while?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................