sir, i have completed engineering diploma in electronics
and now got the call letter for written exam for the
post "junior engineer" from rrb chennai. could you help me
about the model and type of questions that i should prepair?
what is the criterion for selecting vector group of
Transformers ? i mean how to decide vector group of
Generator transformer, substation trasformer and
transformer at consumer end
if any body have tyco electronics placement papers,please
forward to my mail id kadhar.basha@gmail.com ,please as
early as possible.
thanks®ards
kadhar basha
what is the diference between High antenna gain and low
antenna gain and whivh one is better and why?
105
hai i am balaji
now i applied for the post of section engineer in rrb
chennai............
if any body know the question peper and pattern of written
exam please send to me
24
plz send me interview questions & answers of Data Structure
i want tech mahindra recent placement paper conducted for
campus recruitment in bangalore
53
I am stuck up with a question on appending of two arrays
I am writing the code for the same, I am appending two
strings this way
int main()
{
string s1 = "Welcome to C++";
string s2 = "C++ improves the logic ability";
string s3 = s1 + s2;
cout<<s3<<endl;
}
But if I go ahead with the integer datatype , it doesnt work
int main()
{
int arr[4] = {2,3,4,5};
int arr1[4] = {6,7,8,9};
int arr3[9] ;
arr3 = arr + arr1;//displays error
arr3 = arr ++ arr1; // works properly
}
Can anyone please clear my doubt in this question ?