what is the value of 'i'?
i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
THIS will be replaced as
4+6/3-5
the output is 1
| Is This Answer Correct ? | 29 Yes | 1 No |
Answer / aditya
i=strlen("Blue")+strlen("People")/strlen("Red")-strlen
("green")
it is evaluated as
strlen("People")/strlen("Red")
6-4 as 2 then
strlen("Blue")+2
4+2 as 6 then
6-strlen("green")
6-5 as 1
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / abc
i = strlen("Blue")+ strlen("People")/ strlen("Red")- strlen
("green")
it is evaluated as
strlen("People")/ strlen("Red")
6 / 3 as 2 then
strlen("Blue")+ 2
4 + 2 as 6 then
6 - strlen("green")
6 - 5 as 1
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / mahesh
Strlen(BLUE)=4, strlen(people)=6, strlen(red)=3, strlen(green)= 5 so by BODMAS method we can slove this
4 + 6 / 3 - 5 = 4+2-5= 1
1st divison, 2nd addition, 3 rd subraction
| Is This Answer Correct ? | 2 Yes | 1 No |
What is actual argument?
Explain void pointer?
Why calloc is better than malloc?
Can i use Two or More Main Funtion in any C program.?
What is meant by realloc()?
Is javascript written in c?
How do you override a defined macro?
Why doesnt that code work?
What are multidimensional arrays?
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
what are two categories of clint-server application development ?