18,109 views

1 Answer

Best answer
2 votes
2 votes
4- x-y-1
selected by

Related questions

2 votes
2 votes
1 answer
1
rupamsardar asked Aug 30, 2023
494 views
#include <stdio.h int f(int x) { if(x%2==0) { return f(f(x-1)); } else return (x++); } int main() { printf("%d",f(12)); ret...
0 votes
0 votes
1 answer
3
SHWETAV SUMAN asked Oct 6, 2022
332 views
i have typed the following code but when i executed it the solution was not according to my expectation.unsigned short int y= -9; int iy=y; printf(“%d”,iy); solutio...
0 votes
0 votes
3 answers
4
ykrishnay asked May 30, 2022
1,066 views
int main(){extern int a = 20;printf("%d",a); }//why this gives error but followig code is not extern int a =20;int main(){printf("%d",a); } //why this happens that first ...