Is c easy to learn?
No Answer is Posted For this Question
Be the First to Post Answer
What is an lvalue in c?
Who is invented by c?
Explain what does the function toupper() do?
what is the advantage of software development
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
Can stdout be forced to print somewhere other than the screen?
What is || operator and how does it function in a program?
What is the Difference between Class and Struct?
give an example of type casting by a simple c program
What are high level languages like C and FORTRAN also known as?
write the program to find multiplication of 2-D matrix??????????
#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?