If an old women's age is the same as her three grand
daughters i,mean the number of days old child=the no of
weeks old child=no of months old child .The total yrs of all
these ppl is 114 yrs...then how old is the old woman?
the yr has 365 days..and 30 days each month.
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
Subtract Two Number Without Using Subtraction Operator
Program to write some contents into a file using file operations with proper error messages.
main() { int i; printf("%d",i^i); }
Explain how can a program be made to print the line number where an error occurs?
is c language is a object oreinted language?
What is the purpose of 'register' keyword in c language?
What is a 'null pointer assignment' error?
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5