Suppose a column is of 1mx1m dimension adn load is of barely
1 ton(no moment), will u provide the total minimum steel
reinforcement, if not what will u do..?
HELLO SIR VERY GOOD EVENING SIR,
I'M KALAMANI. I NEED TO PREPARE FOR
UPCOMING "JINDAL STEEL AND POWER LTD" INTERVIEW. I'M
MECHANICAL ENGINEER SIR. SO PLEASE SEND ABOUT JINDAL's
PREVIOUS APTITDE TEST QESTION PAPERS TO MY MAIL ID :
<kalafriends@yahoo.in>, <kalamani.mech@yahoo.com>,
<kalajobs@yahoo.in>. I WANT TO KNOW ABOUT THEIR PROCEDURE
TO BE HELD ON THE INTERVIEW? SO PLEASE SIR SEND UR VALUABLE
ANSWER TO ME ON ABOVE MAIL ID SIR. THANK U SIR.
can any one please tell me the optionals for group-1
mains.actually i am preparing for civils.i took one
optional.
47
what is the series parallel connection of capacitors? and
how can we use these application in three phase motors for
controlling torque?
115
WHATIS TIME CONSTANT? WHATIS ITS SIGNIFICANCE? ILLUSTRATE
THROUGH EXAMLES.
113
What is cell reselection in Telecom ?
15
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 ?