Answer Posted / nayani
.c++ is an object oriented programming language.
.c is a procedural oriented programming language.
| Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
What is difference between function overloading and operator overloading?
Who developed c language?
what is bit rate & baud rate? plz give wave forms
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Which control loop is recommended if you have to execute set of statements for fixed number of times?
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.
What is the difference between local variable and global variable in c?
What is the use of ?
Explain what is wrong in this statement?
Explain the difference between the local variable and global variable in c?
Explain how do you list files in a directory?
What is difference between class and structure?
What is merge sort in c?
Explain the difference between exit() and _exit() function?