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
~283 People Reached
Favorite Forums
Favorite Tags
Member Avatar for sunderthomas

[code] Dim a As Integer, i As Integer, b(20) As Integer, c As Integer, d As Integer i = 0 a = TextBox1.Text While a > 1 b(i) = a Mod 2 a = a / 2 i = i + 1 End While b(i) = a While i >= …

Member Avatar for sunderthomas
0
128
Member Avatar for sunderthomas

hey guys i want to slpit a sentence into words but the pogram i have written gives only the first word...can u help me plz..... [code] #include<iostream.h> #include<conio.h> #include<string.h> #include<dos.h> #include<stdio.h> void main() { clrscr(); char text[100]; int i=0; clrscr(); cout<<"enter the sentence"; cin.getline(text,100); while(i<strlen(text)) { char text1[]=" "; int …

Member Avatar for monkey_king
0
155