what is the value of 'i'?
i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
Answer Posted / 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 |
Post New Answer View All Answers
Why is c so popular?
Do you know null pointer?
Explain enumerated types.
What is the default value of local and global variables in c?
What are the 5 types of inheritance in c ++?
What happens if you free a pointer twice?
What is a lookup table in c?
How do I round numbers?
What is return type in c?
writ a program to compare using strcmp VIVA and viva with its output.
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Process by which one bit pattern in to another by bit wise operation is?
What is modeling?
What are the advantages of c language?
What is the right type to use for boolean values in c? Is there a standard type?