who was the present cheif governor of reserve bank of india
Answers were Sorted based on User's Feedback
Answer / madhu
The question itself is gramatically wrong.........
this is something of the sort "did you eat tomorrow?"
| Is This Answer Correct ? | 4 Yes | 0 No |
mr. Subba rao is the cheif governor of reserve bank of india
| Is This Answer Correct ? | 0 Yes | 0 No |
How to upgrade LOOP environment, I just mean, how can i make loop statement editable ? I just try some program using loop statement and checking it in multiple compilers. Every compiler showing different output, what's the wrong ? is it a compiler based problem, or loop based problem, tell me why ? and what will be the debugging process, for this kind of problem ?
Using string functions write a program that will accept the name of the capital as input value and will display the corresponding country. ------------------------ Capitals Countries ------------------------ Capitals Countries Ottawa Canada Moscow Russia Rome Italy I can't not get it to run properly
I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
wap for bubble sort
what are the techniques for reducing the fragility of a memory bug?
What is the code for following o/p * * * * * * * * * * * * * * * *
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
which typw of errors ? & how to solve it ?
void main() { int i=5,y=3,z=2,ans; clrscr(); printf("%d",++i + --z + i++ + --i * ++y); i=5,y=3,z=2; ans=++i + --z + i++ + --i * ++y; printf("\n%d",ans); getch(); } Its output is 37 and 31.... Please explain me why its different How it works.....
Given that two int variables, total and amount , have been declared, write a sequence of statements that: initializes total to 0 reads three values into amount , one at a time. After each value is read in to amount , it is added to the value in total (that is, total is incremented by the value in amount ). Instructor's notes: If you use a loop, it must be a for loop. And if you use a loop control variable for counting, you must declare it.
main() { char c; for(c='A';c<='Z';c++) getch(); }