Answer Posted / richa
and also by default static variable is initialised to
zero...
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
I came across some code that puts a (void) cast before each call to printf. Why?
What is operator precedence?
What is a structural principle?
What is bss in c?
What do mean by network ?
When should a far pointer be used?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Are c and c++ the same?
What is the use of a conditional inclusion statement in C?
Explain how can I prevent another program from modifying part of a file that I am modifying?
what is the difference between class and unio?
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
Explain the priority queues?
What is the difference between typedef struct and struct?
How many loops are there in c?