KP IP Project
KP IP Project
Readability:
#include<stdio.h>
Functions can make your code more
readable by grouping related code Void add();
together.
Void main ()
Maintainability:
{ add();
Functions can make your code more
maintainable by making it easier to Add();
change and update individual parts of }
your code without affecting the
rest of the code. void add()
void main() {
swapByValue(x, y);
2.Call by reference :
#include <stdio.h>
*a = *b;
*b = temp;
} int main() {