write a programming in c to find the sum of all elements in
an array through function.
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
What is union and structure in c?
What are preprocessor directives in c?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
How can I split up a string into whitespace-separated fields?
a 'c' program to tell that the set of three coordinates lie on a same line
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
what is the diference between pointer to the function and function to the pointer?
Is c is a middle level language?
What is function pointer and where we will use it
What is the sizeof () operator?