365 views
1 votes
1 votes

Why is it from -6 to +8? How to solve such qns. Help :)

Please log in or register to answer this question.

Related questions

1.1k
views
3 answers
3 votes
Laxman Ghanchi asked May 19, 2023
1,141 views
#include<stdio.h void print(int n) { printf("Hello "); if(n++ == 0) return ; print(n); n++; } int main() { void print(); print(-4); }How many times printf execute?? And H...
666
views
1 answers
0 votes
Laxman Ghanchi asked May 19, 2023
666 views
#include<stdio.h>void print(int n){ printf("Hello "); if(n++ == 0) return ; print(n); n++;}int main(){ void print(); print(-4);}