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 |
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?
What does %c do in c?
array of pointer pointer to array pointer to pointer
why do some people write if(0 == x) instead of if(x == 0)?
What is a buffer in c?
write a proram to reverse the string using switch case?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
What are the rules for the identifier?
WHAT IS MEANT BY LIFE?
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?