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 |
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.....
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?
what is run time error?
#include"stdio.h" #include"conio.h" void main() { int a; printf("\n enter a number:"); scanf("%c\n"); getch(); }
I'm having trouble with coming up with the correct code. Thank You!! The assignment was to write a program using string functions that accepts a price of an item and displays its coded value. The base of the keys: X C O M P U T E R S 0 1 2 3 4 5 6 7 8 9 Sample I/O Dialogue: Enter Price: 489.50 Coded Value: PRS.UX
To generate the series 1+3+5+7+... using C program
void main() { int i=7; printf("N= %*d",i,i); }
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
Declaration of Cube Guys please help me.. Is this a right way to declare cube.? If i Compile it. It Says: Cube undeclared what should i do? Please help \thanks in advanced #include<stdio.h> #include<math.h> #include<conio.h> main( ) { float x,y; while(x++<10.0) { printf("Enter Number:"); scanf("%d", &x); y = cube(x); printf("%f %f %f \n", x,pow(x,2),y); cube(x); } { float x; float y; y = x*x*x; } getch(); return (y); }
How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)
Why are memory errors hard to debug?
wap for bubble sort