what is the value of 'i'?

i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")

Answer Posted / vimal

1

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .

2373


What is c++ used for today?

669


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1859


How can I read and write comma-delimited text?

621


What are the properties of union in c?

591






Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

671


Can two or more operators such as and be combined in a single line of program code?

811


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

657


C language questions for civil engineering

1245


How can I discover how many arguments a function was actually called with?

635


Explain what is the benefit of using const for declaring constants?

616


what do u mean by Direct access files? then can u explain about Direct Access Files?

1642


Explain enumerated types.

600


What is a constant?

636


What are structure types in C?

671