Answer Posted / vignesh1988i
1) pointers which points to a value indirectly through that variable containing that value..... so pointers are used for data security.
2) only by using pointers through functions we can return MORE THAN ONE VALUE AT A TIME.....
3) as above told execution will be faster.....
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
When was c language developed?
What is the benefit of using an enum rather than a #define constant?
What is extern keyword in c?
What is time null in c?
What is the purpose of clrscr () printf () and getch ()?
State the difference between realloc and free.
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What are different types of variables in c?
How can I manipulate strings of multibyte characters?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is function definition in c?
What is cohesion in c?
What are pragmas and what are they good for?
what are bit fields in c?