Can an array be an Ivalue?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


what is answer for perfect number????????????????

1 Answers  


Dont ansi function prototypes render lint obsolete?

0 Answers  


What is variable and explain rules to declare variable in c?

0 Answers  


What is indirect recursion? give an example?

4 Answers  






What should be keep precautions while using the recursion method?

1 Answers  


Where define directive used?

0 Answers  


What is use of bit field?

0 Answers  


An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above

0 Answers  


Explain b+ tree?

0 Answers  


how can write all 1to 100 prime numbers using for loop,if and break ?

2 Answers   TCS,


write a c program to convert fahrenheit to celsius?

4 Answers   TCS,


Categories