Explain what is the most efficient way to store flag values?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know the purpose of 'register' keyword?
Explain the difference between structs and unions in c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
When is an interface "good"?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What's the best way of making my program efficient?
what is function pointer?
What is a function in c?
What is the right type to use for boolean values in c? Is there a standard type?