Answer Posted / shruti
functions can return values.
structures cannot return values.
we can pass arguments to the function
we cannot pass any argument to the structure.
| Is This Answer Correct ? | 115 Yes | 20 No |
Post New Answer View All Answers
What are high level languages like C and FORTRAN also known as?
What are preprocessor directives in c?
Why c is a mother language?
What are the disadvantages of c language?
What is string concatenation in c?
What is the size of enum in c?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
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 what are linked list?
What is calloc() function?
Can you mix old-style and new-style function syntax?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Are local variables initialized to zero by default in c?
Can static variables be declared in a header file?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.