10. Write a c program to add two numbers without using addition operator.
11. Write a c program to subtract two numbers without using subtraction operator.
15. Write a c program to solve quadratic equation.
18. Write a c program which passes structure to function.
28. Write a c program which takes password from user.
29. Write a scanf function in c which accept sentence from user.
30. Write a scanf function in c which accept paragraph from user.
34 comments:
thank u so much! I don't know how to present this! thanks! ^.*
Hey man Thanks a lot. You have helped me for the assignments. May god bless you.
-akshar
(India)
THANKS MAN ALOT??????HACKERDOLMA007
very useful..!!
lovely site mere assignments main kafi help kar rahi hai....
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss
thankssssss................:-)
thank.....uuuuu...soooooooo........much..........
thank you
same for me.......love this site
thank u very much......it's vry useful 4 me....
thank you so much
q: can i print the multiplication table for the number i print from 1 to 10 without the rest
very useful site....thank you guys and best of luck in the future with more programs .. ;)
thank you so much... can you help me to find number of prime numbers upto n terms
Thank you very Much, Its very helpful...
Thank u... very helpful for my exam...
no mention .....
hey can u please wirte it using while loop for the same output??????????
please........
wap to get three intejer charecter and coverts is to an intejer number.
hey rithish thanks yaar...
it would be even more helpful if u give explanation
theres an easier code with simpler lines, ive created
#include
#include
int main(){
int i=1;
int j;
printf("please enter number for table:");
scanf("%d",&j);
for(i=1; i<13; i++){
printf("\n%d*%d=%d",i,j,i*j);
}
output
1*5=5
2*5=10
3*5=15
4*5=20
5*5=25
6*5=30
7*5=35
8*540
9*5=45
10*5=50
11*5=55
12*5=60
thnx..a lot..
thx paji
i got a big help bcoz of this site
Got passed in C external with 48/50
Thank you
thankewwwww
And also vertically...
plz tell about how to orient tables Horizontally and vertically?
i like this site because all my assignment c program are here!
Thanks a lot :-)
thank yyou so much. this was really helpful :D
how to write c program for displaying tables from 1-20,excluding 9&13.
#include
#include
int main()
{
int i=1;
int j;
printf("please enter number for table:");
scanf("%d",&j);
for(i=1; i<=10; i++)
printf("\n%d*%d=%d",i,j,i*j);
}
what is the need of declaring variable "k" when it is not defined any where?
obviously you can.. here is the code for your problem.
void main()
{
int num,i;
printf("Enter the number to print its multiplication table");
scanf("%d",&num);
for(i=1;i<=10;i++)
{
printf("multiplication table is: \n %d * %d= %d",num,i,num*i);
printf("\n");
}
}
Very useful site thanks for making this helpful site
write c program that multiplicatin table of the integar from 1 to 10
Post a Comment