nithin devang


{ City } mangalore
< Country > india
* Profession * software engineer
User No # 94421
Total Questions Posted # 0
Total Answers Posted # 5

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 6
Users Marked my Answers as Wrong # 1
Questions / { nithin devang }
Questions Answers Category Views Company eMail




Answers / { nithin devang }

Question { NIIT, 2856 }

sir i want to study the c++ course but ino what is the
qualification and the study methode please reply more
details in c++


Answer

Read C++ by Dissection
by Ira Pohl

my answer surety %=50%

_Nithin Devang


Is This Answer Correct ?    1 Yes 1 No

Question { 3990 }

Is there a datatype string in c++?How is the memory allocation?


Answer

There is no DataType called String in C++.
String can be created using character array and delimited by
null character i.e. '/0'.
like char name[]={'n','i','t','h','i','n','
','d','e','v','a','n','g','0'}
or
char name={"nithin devang"}//it will automaticall append
null char.
Null character is having value (ASCII) Zero. (0 character
dont have ascii value 0)
--
If you still wish to use the keyword string you may declare
a macro
#define String char[];

my answer surety %=98%
-------------------
Read Expert C programming, The deep C secrets by Peter Van
Der Linden

Is This Answer Correct ?    0 Yes 0 No


Question { 3990 }

Is there a datatype string in c++?How is the memory allocation?


Answer

There is no DataType called String in C++.
String can be created using character array and delimited by
null character i.e. '/0'.
like char name[]={'n','i','t','h','i','n','
','d','e','v','a','n','g','0'}
or
char name={"nithin devang"}//it will automaticall append
null char.
Null character is having value (ASCII) Zero. (0 character
dont have ascii value 0)
--
If you still wish to use the keyword string you may declare
a macro
#define String char[];

my answer surety %=98%
-------------------
Read Expert C programming, The deep C secrets by Peter Van
Der Linden

Is This Answer Correct ?    2 Yes 0 No

Question { TCS, 13292 }

what is difference between internet and Internet?


Answer

Internet is global network using which you browse check
Gmail. The real Inter connected web.
internet is the connecting two or more computers through LAN
etc to form a communication network

An Internet is an internet but an internet is not an Internet.
--
my answer surety %=100%

Is This Answer Correct ?    1 Yes 0 No

Question { 2811 }

Write a single instruction that will find the remainder of
integral division when x is divided by y. Have the answer
stored in z.


Answer

z=x%y;

my answer surety %=60%
_Nithin Devang

Is This Answer Correct ?    2 Yes 0 No