#includestdio.hint main(){int a=2, b=2;for(;b;printf("%d -- %d\n", a, b)){b=a++= 2;}return 0;}
What will the output of this code
#include stringusing namespace std;int main(int argc, char const *argv[]){char s1[6] = "Hi";char s2[6] = "sookshamas";char s3[12] = s1 + " " + s2;couts3;return 0;}
output of the code: #include iostreamusing namespace std;typedef struct book{int data;int size;}sp;int main(){struct book b1;b1.data = 5;b1.size =9;coutb1.datab1.sizeendl;return 0;}