Why is structure padding done in c?
No Answer is Posted For this Question
Be the First to Post Answer
where does it flourished?
Write a program for finding factorial of a number.
write a program to create a sparse matrix using dynamic memory allocation.
What is the difference between void main and main in c?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Why do we need a structure?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
What is page thrashing?
Explain can you assign a different address to an array tag?
Give the rules for variable declaration?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
c program to input values in a table(using 2D array) and print odd numbers from them