Answer Posted / lilly
0.0111
| Is This Answer Correct ? | 22 Yes | 24 No |
Post New Answer View All Answers
When should I declare a function?
Explain 'bus error'?
What is the difference between procedural and functional programming?
Why do we use namespace feature?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What are the types of type qualifiers in c?
How can you determine the size of an allocated portion of memory?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
How can I find the modification date of a file?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
How are structure passing and returning implemented?
Difference between exit() and _exit() function?
Where define directive used?
Define and explain about ! Operator?