#includestdio.hint main(){float me = 5.25;double khushi = 5.25;if(me == khushi)printf("right");elseprintf("worng");return 0;}
What will be the output of the following C code?#include stdio.hvoid main(){int x = 5;if (x 1)printf("hello");if (x == 5)printf("hi");elseprintf("no");}
#include stdio.hint get(int n) {if(n = 1) {return n;}return get(n - 1) + get(n - 2);}void solve() {int ans = get(10);printf("%d", ans);}int main() {solve();return 0;}
int main () { Integer x; return 0;}Which one of the following phases in a seven C compiler will throw an error?#include stdio.hint main(){unsigned char c=290;printf("%d",c);return 0;}