1. Write a c program to convert decimal number to hexadecimal
number.
3. Write a c program to convert octal number to decimal
number.
4. Write a c program to convert octal number to hexadecimal
number.
5. Write a c program to convert hexadecimal number to decimal
number.
6. Write a c program to convert hexadecimal number to octal
number.
8. Write a c program to convert binary number to hexadecimal
number.
9. Write a c program to convert binary number to octal
number.
11. Write a c program to convert hexadecimal number to binary
number.
12. Write a c program to convert octal number to binary
number.
14. Write a c program to convert centigrade to
fahrenheit.
5 comments:
scanf("%[^\t]s",arr);
please any one explain this
scanf("%[^\t]s",arr);
It means scanf will accept characters until it doesn't get '\t' i.e. tab character .
scanf("%[^\n]s",arr);
It means scanf will accept characters until it doesn't get '\n' i.e. new character .
thanks
hello sir,,,,,may i get a help for the strstr function of c with explanation of it
plz anyone explain the mechanism of this
Post a Comment