Skip to content

nasrullah878/Cfunctions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

//Cfunctions #include<stdio.h> int one(int x) { x = x + 8; printf("\n XYZ = %d", x); return (x); }

float two(int m) { one(m); printf("\n AABC = %d", m); return (7.1); }

int three(int g, int h) { int p, t; float r; g = one(g); r = two(h); printf("\n A = %d, B = %d, C = %f, D = %d", g, h, r, p); return (25); }

int main() { int a = 11, b = 12, ht; ht = three(14, 2); printf("\n F = %d, G = %d, H = %d", a, b, ht); } //this is nasrullah khan new changes

About

C functions calls

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published