336 views

1 Answer

Related questions

1 votes
1 votes
1 answer
1
2 votes
2 votes
1 answer
2
0 votes
0 votes
1 answer
3
Nishi Agarwal asked Mar 10, 2019
601 views
void f(int x,int &y,const int &z){x+=z; y+=z;}int main(){ int a=22,b=33,c=44; f(a,b,c); f(2*a-3,b,c); printf("a=%d b=%d c=%d",a,b,c); return 0;}
0 votes
0 votes
0 answers
4
aimhigh asked Jan 8, 2019
1,235 views
#include<stdio.h>void main(){int p=-8;int i= (p++,++p);printf("%d\n",i);}