Pedict the output of the following code;#includestdio.h#includestring.hint main(){char text[100]="Sample test";printf("%d%d",strlen(text),sizeof(text));return 0;}
#includestdio.hWhat will be the output of the above code snippet?int main(){int a = 0;while (a --);{printf(" IPL\b");}printf ("2022");return 0;}
#include stdio.hint main() {int a = 3, b = 5;int t = a;a = b;b = t;printf("%d %d", a, b);return 0;}