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
What is string in c language?
What is p in text message?
What is dynamic memory allocation?
Write a program to reverse a linked list in c.
What is the role of this pointer?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is scope rule of function in c?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Explain about the constants which help in debugging?
How do you generate random numbers in C?
What does c in a circle mean?
What is #define in c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Explain how does flowchart help in writing a program?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions