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
Ranked #72.7K
~256 People Reached
About Me

i'm a student,here to share my ideas with people whom i can't meet virtually...i prefer theology to mere logic.to me opinion is more important than the true fact... i hate upsurges or some sort of unbalance...rather i insist to be constant....n i don't…

Favorite Forums
Favorite Tags
c x 1
Member Avatar for Orymeyer

Considering the following lines of C code: #include <stdio.h> #include <stdlib.h> #include <ctype.h> void print_upper(char *string); int main() { char s[80]; printf("enter a string\n"); gets(s); print_upper(s); printf("\ns is now in upper case: %s",s); return 0; } void print_upper(char *string) { register int t; int k; for(t=0;string[t];++t) { string[t]=toupper(string[t]); putchar(string[t]); } …

Member Avatar for Vish0203
0
144
Member Avatar for mcuk

Hi, I am looking for advice on the best place to start with programming. I work for a web design company and currently create database powered sites using PHP and MySql. I seem to learn very quickly with the right resources. When I started many years ago in PHP, I …

Member Avatar for abhishekde.nasa
0
112