What is cohesion in c?
Answer / Ajit Kumar Thakur
In C programming, cohesion refers to the degree to which a module (e.g., a function or a class) performs a single, well-defined task.
| Is This Answer Correct ? | 0 Yes | 0 No |
difference between function & structure
What is the difference between exit() and _exit() function in c?
What is the meaning of typedef struct in c?
What is the meaning When we write "#include" what is # and what does include does there???
to convert a string without using decrement operater and string functions
Define VARIABLE?
difference between c and c++
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is the benefit of using an enum rather than a #define constant?
How do I get a null pointer in my programs?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision