Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
17% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
8
Posts with Downvotes
6
Downvoting Members
4
2 Commented Posts
0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags

7 Posted Topics

Member Avatar for adeelfayyaz

hii fayyaz...its nyc to c u on daniweb...m a new member as well...

Member Avatar for JamieLynnSEO
0
57
Member Avatar for aamira_s

heyy everyone....this is aamira shabnam from bangladesh.. i m computer science and engineering student...and i hope to get help from you guyz when i need..

Member Avatar for JamieLynnSEO
0
58
Member Avatar for aamira_s

This program is to count the number of words,vowels and consonants of a string.Here is my code.Please post your comment.I do not know whether I need to change anything. [CODE]#include <stdio.h> int main() { char a,b =' '; int vowel=0,c=0,count=0; printf("Please press '*' to terminate.\n\n"); while(scanf("%c",&a)==1) { if(a=='*') break; else …

Member Avatar for abhimanipal
0
167
Member Avatar for aamira_s

this is a simple code to test whether a number is prime or not...i dont know y it is taking this much time to execute...can ne1 tell where m mistaking?? heres my code [CODE] #include<stdio.h> #include<math.h> int main() { int a,n,prime,l=2; printf("Please enter a positive integer.\n"); printf("To end the program …

Member Avatar for Adak
0
167
Member Avatar for wesduncan

#include<stdio.h> int main() { int i,j,n=10; for(i=1;i<=n;i++){ for(j=1;j<=i;j++){ printf("*"); } printf("\n"); } return 0; }

Member Avatar for aamira_s
0
102
Member Avatar for cufisa

#include<stdio.h> int main() { int a,b,n; printf("Please enter the number of lines.\n"); scanf("%d",&n); for(a=n;a>0;a--){ for(b=a;b>0;b--){ printf("*"); } printf("\n"); } return 0; }

Member Avatar for aamira_s
0
162
Member Avatar for kimprosthom

[CODE]#include<stdio.h> int main() { int i,j,n; printf("Please enter the number of lines.\n"); scanf("%d",&n); for(i=1;i<=n;i++){ for(j=1;j<=i;j++){ printf("*"); } printf("\n"); } return 0; }[/CODE] [CODE]#include<stdio.h> int main() { int a,b,n; printf("Please enter the number of lines.\n"); scanf("%d",&n); for(a=n;a>0;a--){ for(b=a;b>0;b--){ printf("*"); } printf("\n"); } return 0; }[/CODE]

Member Avatar for aamira_s
-1
188

The End.