Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~764 People Reached
Favorite Forums
Favorite Tags
c x 3
Member Avatar for passionated

(C language) Hi.. Can anyone write a function to accept a character and display it 10 times?? Thanks in advance..

Member Avatar for WaltP
0
582
Member Avatar for passionated

#include <stdio.h> int main() { int num, i = 1; printf("\n Enter any Number:"); scanf("%d", &num); printf("Multiplication table of %d: \n", num); while (i <= 10) { printf("\n %d x %d = %d", num, i, num * i); i++; } return 0; } Hi.. Can someone please patiently explain me …

Member Avatar for JilMakias
0
182