What is #include in c?
Answer / dhanshri chabukswar
#include means "bring in this file's code before compiling"....
| Is This Answer Correct ? | 0 Yes | 0 No |
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
WHAT IS PRE POSSESSORS?
If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 Answers Microsoft, Motorola,
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
which one is better structure or union?(other than the space occupied )
what will be maximum number of comparisons when number of elements are given?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
What would be an example of a structure analogous to structure c?
HOW DO YOU HANDLE EXCEPTIONS IN C?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What are the 5 types of inheritance in c ++?