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 |
main() { char c; for(c='A';c<='Z';c++) getch(); }
void main() { int i=5; printf("%d",i+++++i); }
#include<stdio.h> void main() { int i=1; printf("%d%d%d",i++,++i,i); }
Given an int variable n that has been initialized to a positive value and, in addition, int variables k and total that have already been declared, use a do...while loop to compute the sum of the cubes of the first n whole numbers, and store this value in total . Thus if n equals 4, your code should put 1*1*1 + 2*2*2 + 3*3*3 + 4*4*4 into total . Use no variables other than n , k , and total .
How to create a program that lists the capital country when told what the original country is? (Terribly sorry, I'm a novice programmer and would appreciate any help ;). Cheers, Alexxis
wap for bubble sort
Given an int variable n that has already been declared and initialized to a positive value, and another int variable j that has already been declared, use a do...while loop to print a single line consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables other than n and j .
What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).
write a profram for selection sort whats the error in it?
void main() { int i=1; printf("%d%d%d",i,++i,i++); } Cau u say the output....?
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
To generate the series 1+3+5+7+... using C program