write a programming in c to find the sum of all elements in
an array through function.
No Answer is Posted For this Question
Be the First to Post Answer
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
what is the advantage of software development
Differentiate between new and malloc(), delete and free() ?
Why c is called top down?
multiple of 9 without useing +,* oprator
What are the advantages of using Unions?
Can you please compare array with pointer?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
What is a floating point in c?
how to connect oracle in C/C++.
What is the explanation for cyclic nature of data types in c?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }