- 4
What is the symbol for multiplication in c
symbol for multiplication in c
10 Antworten
+ 4
*
+ 4
error is at printf line... you should use %d instead of $d as formatter ^^
+ 2
provide your full code ^^
+ 1
sure it works ;P
you can upvote, and mark best answer if you want :)
0
Yes but when I use it it gives me error
0
#include <stdio.h>
int main() {
int a;
int b;
int c;
a=20;
b=40;
c=a*b;
printf ("c = $d", c);
return 0;
}
0
Kk let me check
0
Yh it is working now
0
Thanks
0
Kk