Answer Posted / saroja patil
Array is simple program structure collection of homogeneous
data elements which are stored the elements are same data
same type and same size.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Difference between constant pointer and pointer to a constant.
Describe static function with its usage?
What is a structural principle?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Explain continue keyword in c
Explain is it valid to address one element beyond the end of an array?
What is difference between main and void main?
What are the different types of linkage exist in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Why is c faster?
What is identifiers in c with examples?
What is the -> in c?
What is the difference between char array and char pointer?
How do I use void main?