Functions 1. To display use start (No values are spark off in function call ) malarkey main() { subdue display( neutralise); } neutralize display() { printf( hello); } 2. To find the sum of two metrical composition victimisation function. empty main() { invalidate sum (int a, int b); /*function prototype*/ sum(2, 3); } repress sum (int a, int b) { int c; c=a+b; printf( nerve center = %d,c); } 3. Functions with no arguments and no sacrifice values cancel main() { discharge sum( unfilled); /*function prototype*/ sum(); } void sum(void) { int a, b, c; a = 5; b = 8; c = a+b; printf( conglutination of rime: %d, c);} 4. Functions with arguments and no return values void main() { void sum(int a, int b); int a, b; a = 5; b = 8; sum(a, b); } void sum(int a, int b) { int c; c = a + b; printf( marrow squash of numbers: %d, c); } 5. Functions with arguments and one return values . void main() { int sum(int a, int b); int a, b, c; a = 5; b = 8; c = sum(a, b); printf( Sum of numbers: %d, c); } int sum(int a, int b) { int t; t = a+b; return (t); } 6. Functions with no arguments but return a value.

void main() { int sum(void); int c; c = sum(); printf( Sum of numbers: %d, c); } int sum(void) { int a, b, t; a = 5; b = 8; t = a+b; return (t); } 7. Functions that return ternary values. void main() { void operation(int a, int b, int *sum, int *diff); int a, b, c, d; a = 5; b = 8; operation(a, b, &c, &d); printf( Sum of numb ers: %d, c); printf( disparity of number! s : % d, d); } void operation(int a, int b, int *sum, int *diff) { *sum = a + b; *diff = a b; } Nesting of Functions (Function with a function) void main() { void sum(void); sum(); } void sum(void) { void display(int c); int a, b, c; a = 5; b = 8; c = a+b; display(c); /*Nesting of Functions*/ } void display(int c) {...If you fate to extend a full essay, order it on our website:
OrderCustomPaper.comIf you want to get a full essay, visit our page:
write my paper
No comments:
Post a Comment