give the output of the following.. system. out. print (" welcome "+ 3 +4) ;
Answers
Answered by
0
Answer:
#include<stdio.h>
void main()
{
int a=3, b=4;
printf("welcome"+a+b) ;
}
Similar questions