how should functions be apportioned among source files?



how should functions be apportioned among source files?..

Answer / Vishwa Natri

Functions in C can be distributed among multiple source files based on logical grouping, such as by module or subsystem. This helps to keep the code organized and manageable. Also, avoid unnecessarily large files as they can become difficult to maintain and compile.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

1 Answers   College School Exams Tests,


What will be the output of x++ + ++x?

20 Answers   MBT, Religare,


What does %c do in c?

1 Answers  


array of pointer pointer to array pointer to pointer

1 Answers   MAHINDRA,


why do some people write if(0 == x) instead of if(x == 0)?

1 Answers  


What is a buffer in c?

1 Answers  


write a proram to reverse the string using switch case?

1 Answers   Syntel,


main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?

3 Answers   Excel,


What are the rules for the identifier?

1 Answers  


WHAT IS MEANT BY LIFE?

2 Answers  


what is the value of b if a=5; b=++a + ++a

31 Answers   Infosys, TCS, Tech Mahindra,


What is the difference between variable declaration and variable definition in c?

1 Answers  


Categories