Sponsored Content
Top Forums Programming Repeated printF causes annoyance with do Post 70131 by C|[anti-trust] on Tuesday 26th of April 2005 05:19:40 AM
Old 04-26-2005
I got the answer thanks Smilie
here it is

Code:
#include <stdio.h>
#include <ctype.h>

int main () {
   char coll[2];
   int col;

   do {
       printf("Enter Number: ");
       scanf("%s",coll);

       if (isdigit(coll[0]))
       {
           col=((int)coll[0])-48;
       }
       else
       {
           printf("It is not a digit : %c,%d\n",coll[0],coll[0]);
       }

   } while (( col < 4  ) || (col >9));
}

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Get rid of repeated entries.

I have the following problem. The file contains many lines already sorted according to their first arguments. Some of these first arguments are repetitive. For each first argument value, I need to keep the first and the last line that contain it. For example, ... 1 234 1 348 ... ... 5 483... (2 Replies)
Discussion started by: jijibabawu
2 Replies

2. Shell Programming and Scripting

matching repeated character

looking for a bit of help with sed. I have a file that looks a bit like this: sdfghhjk asdfdfghgj asdfhgghj werdfvtfh edftbgh 1211211221 sdffgfm dfghnhjm dfvfsgbgh adsfv bdhgn 1111111dffg dfv1122 dsgvbghn111111 fffffffgbdghn fffffff sfgh3333gs vdf (5 Replies)
Discussion started by: robsonde
5 Replies

3. Programming

Vim highlighting annoyance

I was using vim about an hour ago doing abit of python (i only just started using vim). And I think i typed something wrong, and all of a sudden the letter i is always highlighted. Turning syntax off and on didn't work. and i couldent find the solution online. Thanks in advanced. (1 Reply)
Discussion started by: vimhelp
1 Replies

4. Shell Programming and Scripting

To find the repeated name in subject

Hi, I am using a mail application, When I use to check with the command, I will get the outputs as q -s 6128175 (9, 9/6128175) Return-path: minka.bell@abcd.org From: "Minka Bell" <minka.bell@abcd.org> To: <dcrouch@xyz.org>, Subject: Open items with new PICT system Date: Wed,... (12 Replies)
Discussion started by: gsiva
12 Replies

5. Shell Programming and Scripting

Repeated Pattern

I have a list like this: todu todo tofe tafo I want to grep only the lines where the 2nd and the 4th character are the same. In this case I would get only "todo". Thanks. (3 Replies)
Discussion started by: rlopes
3 Replies

6. Shell Programming and Scripting

ssh annoyance

I have this script that routinely ssh into another host to collect data from that host. However we have these annoying boilerplates on all our machines that flood the screen from all the ssh's. Any way to filter this stdout but allow all the other stdout? In other words, the second you ssh... (4 Replies)
Discussion started by: stevenswj
4 Replies

7. Shell Programming and Scripting

Find repeated word and take sum of the second field to it ,for all the repeated words in awk

Hi below is the input file, i need to find repeated words and sum up the values of it which is second field from the repeated work.Im trying but getting no where close to it.Kindly give me a hint on how to go about it Input fruits,apple,20,fruits,mango,20,veg,carrot,12,veg,raddish,30... (11 Replies)
Discussion started by: 100bees
11 Replies

8. Shell Programming and Scripting

Getting most repeated 3 lines

Hi all if i want to get the 3 lines of the most repeated lines here tony,1,x tony,1,x tony,2,x tony,2,x tony,3,x tony,4,x tony,5,x adam,1,y to get output tony,1,x tony,2,x tony3,x adam,1,y (3 Replies)
Discussion started by: teefa
3 Replies

9. Shell Programming and Scripting

Getting the most repeated column

Hi all , i want to get the most repeated column in my file File: name,ID adam,12345 ----1 adam,12345 ----2 adam,934 adam,12345 ----3 john,14 john,13 john,25 ----1 john,25 ----2 tom,1 -----1 tom,2 -----1 so my output to be (5 Replies)
Discussion started by: teefa
5 Replies

10. UNIX for Dummies Questions & Answers

Reading between a repeated string

I have a requirement where I have to read the lines between a repeated string FileName: abc.txt ls /data/abc.txt 1 2 #ZENCO 3 4 5 6 #ZENCO 11 213 454 7 #ZENCO (8 Replies)
Discussion started by: eskay
8 Replies
COLLATOR_GET_SORT_KEY(3)						 1						  COLLATOR_GET_SORT_KEY(3)

Collator::getSortKey - Get sorting key for a string

	Object oriented style

SYNOPSIS
public string Collator::getSortKey (string $str) DESCRIPTION
Procedural style string collator_get_sort_key (Collator $coll, string $str) Return collation key for a string. PARAMETERS
o $coll -Collator object. o $str - The string to produce the key from. RETURN VALUES
Returns the collation key for the string. Collation keys can be compared directly instead of strings. Warning This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE. Please read the section on Booleans for more information. Use the === operator for testing the return value of this function. EXAMPLES
Example #1 collator_get_sort_key(3)example <?php $s1 = 'Hello'; $coll = collator_create( 'en_US' ); $res = collator_get_sort_key( $coll, $s1); echo urlencode($res); ?> The above example will output: SEE ALSO
collator_sort(3), collator_sort_with_sort_keys(3). PHP Documentation Group COLLATOR_GET_SORT_KEY(3)
All times are GMT -4. The time now is 03:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy