- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
5 Posted Topics
suppose the array is : char arr[7][14]; this means you can store 7 elements which are individualy an array of 14 elements. you may take input like this [code] for(i=0;i<7;i++) scanf("%s", arr[i]); // or gets(arr[i]); [/code] and print like this [code] for(i=0;i<7;i++) printf("%s ", arr[i]); // or puts(arr[i]); [/code] [U][COLOR="red"]ex. …
How can I find the L.C.M of a series of numbers
A string is input which is both in uppercase & lowercase letters. How can I arrange the string so that all lowercase letters are in one side and uppercase letters are in another side.
How can I exchange 2 variables values without using any 3rd temporary variable.
IThanks for previous help. I know the process of finding H.C.F. of two numbers. But how to calculate H.C.F & L.C.M. of a series of numbers? Please reply.
The End.
Somali Rathore