what is the value of 'i'?
i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
Answer Posted / guest
1(one)
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
How do you list files in a directory?
Why c is known as a mother language?
Why main is not a keyword in c?
What is the use of parallelize in spark?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Why C language is a procedural language?
Explain the Difference between the New and Malloc keyword.
How can I generate floating-point random numbers?
How is a structure member accessed?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is the use of typedef in structure in c?
What is the meaning of 2d in c?
How can I get the current date or time of day in a c program?
Explain how can you restore a redirected standard stream?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }