by admin | May 23, 2015 | sem1
Natural and Synthetic Polymers There are two types of polymers: synthetic and natural. Synthetic polymers are derived from petroleum oil, and made by scientists and engineers. Examples of synthetic polymers include nylon, polyethylene, polyester, Teflon, and epoxy....
by admin | May 23, 2015 | cse
Pointer to an array in c It is most likely that you would not understand this chapter until you are through the chapter related to Pointers in C. So assuming you have bit understanding on pointers in C programming language, let us start: An array name is a constant...
by admin | May 23, 2015 | cse
Return array from a function in c C programming language does not allow to return an entire array as an argument to a function. However, you can return a pointer to an array by specifying the array’s name without an index. You will study pointer in next chapter...
by admin | May 23, 2015 | cse
Passing arrays to functions in c If you want to pass a single-dimension array as an argument in a function, you would have to declare function formal parameter in one of following three ways and all three declaration methods produce similar results because each tells...
by admin | May 23, 2015 | cse
arrays in c C programming language provides a data structure called the array, which can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a...