Answer Posted / khaja
packing structures in a place or memory
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Differentiate between #include<...> and #include '...'
Is c still used?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Why & is used in c?
What is the difference between array and pointer?
What is preprocessor with example?
Write a code to generate divisors of an integer?
How can I send mail from within a c program?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
while initialization of array why we use a[][2] why not a[2][]...?
Can two or more operators such as and be combined in a single line of program code?
Are there namespaces in c?
What are examples of structures?
In a switch statement, what will happen if a break statement is omitted?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none