what is the value of 'i'?
i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
Answer Posted / vignesh1988i
THIS will be replaced as
4+6/3-5
the output is 1
| Is This Answer Correct ? | 29 Yes | 1 No |
Post New Answer View All Answers
In which language linux is written?
c program to compute AREA under integral
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
How is a null pointer different from a dangling pointer?
What is the meaning of && in c?
Is it valid to address one element beyond the end of an array?
Compare interpreters and compilers.
Is using exit() the same as using return?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
How can a program be made to print the name of a source file where an error occurs?
State two uses of pointers in C?
Why main is not a keyword in c?
How do you print an address?
What should malloc() do?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)