WAP to display addition of 2 numbers using function using call by value concept. Get link Facebook X Pinterest Email Other Apps - March 22, 2017 Get link Facebook X Pinterest Email Other Apps Comments Unknown10:26 PM#includevoid shashi(int a,int b);void main(){int x=100,y=45;shashi(x,y);} void shashi(int a,int b){int z;z=a+b;printf("%d",z);}ReplyDeleteRepliesReplyUnknown10:26 PM#includevoid shashi(int a,int b);void main(){int x=100,y=45;shashi(x,y);} void shashi(int a,int b){int z;z=a+b;printf("%d",z);}ReplyDeleteRepliesReplyUnknown12:11 PM#includevoid p(int a,int b);void main(){int x=100,y=45;p(x,y);} void p(int a,int b){int q;q=a+b;printf("%d",q);}ReplyDeleteRepliesReplyUnknown12:48 PM#includevoid p(int a,int b);void main(){int x=100,y=45;p(x,y);} void p(int a,int b){int q;q=a+b;printf("%d",q);}ReplyDeleteRepliesReplyUnknown8:18 PM#includevoid p(int a,int b);void main(){int x=100,y=45;p(x,y);} void p(int a,int b){int q;q=a+b;printf("%d",q);}ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
#include
ReplyDeletevoid shashi(int a,int b);
void main()
{
int x=100,y=45;
shashi(x,y);
} void shashi(int a,int b)
{
int z;
z=a+b;
printf("%d",z);
}
#include
ReplyDeletevoid shashi(int a,int b);
void main()
{
int x=100,y=45;
shashi(x,y);
} void shashi(int a,int b)
{
int z;
z=a+b;
printf("%d",z);
}
#include
ReplyDeletevoid p(int a,int b);
void main()
{
int x=100,y=45;
p(x,y);
} void p(int a,int b)
{
int q;
q=a+b;
printf("%d",q);
}
#include
ReplyDeletevoid p(int a,int b);
void main()
{
int x=100,y=45;
p(x,y);
} void p(int a,int b)
{
int q;
q=a+b;
printf("%d",q);
}
#include
ReplyDeletevoid p(int a,int b);
void main()
{
int x=100,y=45;
p(x,y);
} void p(int a,int b)
{
int q;
q=a+b;
printf("%d",q);
}