Answer Posted / aravind
To pass the actual arguments by address instead by calling
by reference in function.
| Is This Answer Correct ? | 27 Yes | 2 No |
Post New Answer View All Answers
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
List the difference between a "copy constructor" and a "assignment operator"?
How do I convert a string to all upper or lower case?
What does the && operator do in a program code?
Explain what are its uses in c programming?
Explain what’s a signal? Explain what do I use signals for?
What is difference between structure and union in c programming?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What are the advantages of c language?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
explain what are actual arguments?
What is string function c?
How can I pad a string to a known length?
Can main () be called recursively?
How to create struct variables?