No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
> void print_upper(char *string) { register int t; int k; for(t=0;string[t];++t){ string[t]=toupper(string[t]); putchar(string[t]); } } Here, the for loop simply accepts char[element],i.e, an array of characters supplied by the call of the function in main(void) as print_upper(char *string) where the string is supplied as a char pointer parameter. Now, the …
If you have a basic knowledge in OOP(Object Oriented Programming) like Java or alike then you can directly start from 'Complete Reference to C#' by Herbert Schildt. C# is more Java like just you'll enjoy the benefits of generics,LINQ,LAMBDA operators. happy coding...:)
The End.
abhishekde.nasa