sir are these programs helpful for campus recruitments
@abdoTheDS2 ай бұрын
anyone that did not get how that recursion function works. use a pen and paper ✅
@rakshaya5184 ай бұрын
Not working for 48 the values are going in negative
@PortfolioCourses4 ай бұрын
At a certain point the number is so big that it essentially can’t be represented accurately by the type. If you change the type to size_t it should work for larger numbers as size_t can represent a larger range of positive integer values.
@Abdalrahman_0 Жыл бұрын
I think that I did it better void fun (int x){ int y= x, i ; printf("%d ", x); printf("%d ", x+=1); for(i = 0;i < 10;i++){ y= (x+y); printf("%d ", y); x= (x+y); printf("%d ", x); } } ------------->The main int main(void) { int x; printf("Enter a #: "); scanf("%d", &x); fun(x); return 0; } + Thank u so much❤❤