how to concatenate the two strings
Answer / hasini
simple steps:
String s1 = "Hello, ";
String s2 = "world!";
String s3 = s1 + s2;
System.out.println(s3);
// prints out: Hello, world!
| Is This Answer Correct ? | 3 Yes | 2 No |
Is it possible to print a name without using commas, double quotes,semi-colons?
what is brs test reply me email me kashifabbas514@gmail.com
main() { int i = 3; for (;i++=0;) printf(“%d”,i); }
Who could write how to find a prime number in dynamic array?
plz send me all data structure related programs
main() { int *j; { int i=10; j=&i; } printf("%d",*j); }
#include<stdio.h> main() { char s[]={'a','b','c','\n','c','\0'}; char *p,*str,*str1; p=&s[3]; str=p; str1=s; printf("%d",++*p + ++*str1-32); }
main(){ char a[100]; a[0]='a';a[1]]='b';a[2]='c';a[4]='d'; abc(a); } abc(char a[]){ a++; printf("%c",*a); a++; printf("%c",*a); }
int aaa() {printf(“Hi”);} int bbb(){printf(“hello”);} iny ccc(){printf(“bye”);} main() { int ( * ptr[3]) (); ptr[0] = aaa; ptr[1] = bbb; ptr[2] =ccc; ptr[2](); }
Given n nodes. Find the number of different structural binary trees that can be formed using the nodes.
16 Answers Aricent, Cisco, Directi, Qualcomm,
#include<stdio.h> main() { struct xx { int x; struct yy { char s; struct xx *p; }; struct yy *q; }; }
#define f(g,g2) g##g2 main() { int var12=100; printf("%d",f(var,12)); }