4 Digits in a Pin (code)
it is shift+d
#4:D.)Patanjali
I have absolutely no idea :D
The County Executive or County Mayor is D. Gary Davis.
That would be ( 3.73 )
ASCII refers to the characterset. So the ASCII code of 'd' is 'd' If you meant binary code it is: 01100100
wat is the code for SUCTION d and c
what does D mean on your national insurance code
No. :D
BCD code isn't valid for these integers , 10 , 11 , 12 , 13 , 14 i.e if these integers ae converted to binary code they 'd be called wrong BCD
#include<stdio.h> #include<conio.h> #include<math.h> void main() { int r,d,t,code; printf("enter your code 1 for rupees to dollar\n 2 for dollar to rupee"); scanf("%d",&code); if(code==1) { printf("enter your amount"); scanf("%d",&r); d=r/(45); printf("you have dollar %d",d); } elseif (code==2) { printf("enter your amount"); scanf("%d",&d); r=d*(45); printf("you have rupees %d",r); } else printf("invalid code"); getch(); }