Sponsored Content
Full Discussion: problem with scanf
Top Forums Programming problem with scanf Post 91779 by linuxpenguin on Monday 5th of December 2005 02:16:18 PM
Old 12-05-2005
hi,
First, fflush on stdin is not guaranteed. Some ppl might suggest you to use getchar to flush the stdin. But again that is not a clean way, i think so.
There are other options like using the gets (or fgets which is secure ) then convert the input to whatever format you want using the sscanf (string scanf). At the moment I would suggest you to use fgets and sscanf. However in instance where you want a key board input such that you dont want to wait for the enter key, for eg, u want something to happen when a user types in 'q' ( for eg) without having to press the enter key after typing q, ( this is called as hotkey) you may want to write your own keyboard handling function, I use the one below sometimes, this is for unix system. for windows, it will be different.

I have also added the main function to this function so you can better understand how mygetch works:


Code:
/* 
Desc: The main intent of this program is the function mygetch. This function is
	written to input one character at a time. The input does not await the enter
	key response from the user.
Author: Hemant Borole
Date: 27Jan05 10:06 am
*/

#include <stdio.h>
#include <termios.h>
#include <unistd.h>

#define BUFFSIZE 64		/* Buffer size for input */
/* this function will return immediately after a key is
   pressed. You do not have to wait till the enter key is hit */

int mygetch( ) {

	/* Handles to old and new termios structures */
	struct termios oldt, newt;
	int ch;

	/* store current termios to restore back later */
	tcgetattr( STDIN_FILENO, &oldt );
	newt = oldt;

	/* set to canonical. turn off echo */
	newt.c_lflag &= ~( ICANON | ECHO );
	tcsetattr( STDIN_FILENO, TCSANOW, &newt );

	/* Read the character */
	ch = getchar();

	/* Reset terminal */
	tcsetattr( STDIN_FILENO, TCSANOW, &oldt );
	return ch;
}

/* Main body, to test the mygetch, convert the character immediately
   to upper case. Do not have to wait till user inputs, presses enter
   and then convert to upper case */

int main()	{
	char c = '\0';
	char str[BUFFSIZE];
	char inp[BUFFSIZE];
	int i = 0;

	str[0] = '\0';

	printf("Type q to quit this program or press enter. \n");
	printf("Anyway the program will self kill after %d characters of input\n",BUFFSIZE);
	while ( 1 )	{
		if ( i >= BUFFSIZE ) break;

		c = mygetch();
		if ( c == 'q' || c == '\n' ) break;

		if ( c >='a' && c <='z' )	{
			printf("%c",c-32);
			str[i] = c-32;
		}
		else	{
			printf("%c",c);
			str[i] = c;
		}
		inp[i] = c;
		i++;
	}
	printf("\nYou typed: %s\n",inp);
	printf("\nConverted output: %s\n",str);
}


Last edited by blowtorch; 12-23-2006 at 01:42 PM..
 

10 More Discussions You Might Find Interesting

1. Programming

Scanf problem under LINUX...

I have a problem reading characters from keyboard with the scanf function. Here there is a little piece of code: #include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> /* The last 3 libraries are included because in the real program I use some... (4 Replies)
Discussion started by: robotronic
4 Replies

2. Programming

scanf with strings... please help

hi i am a beginner to C i have encountered a problem with my assignment, and i have researched it on the internet, but unfortunately i didn't find anything related to that. i am writing a simple program that takes user's input by prompt command, and parse the whole line into an array of... (1 Reply)
Discussion started by: inkfish
1 Replies

3. Programming

scanf doesn´t reads spaces ???

hi all i have a program in C (Unix Solaris 5.7) and i want to read a string from keyboard, but the "scanf" doesn´t reads spaces. example: .... char name; .... printf("Enter your name: "); scanf("%s",&name); printf ("Your name is: %s", name); and if i write Kevin Costner ... (4 Replies)
Discussion started by: DebianJ
4 Replies

4. Programming

simple scanf issue ?

Hello everyone, I hope someone is awake to help me on this.. hey How can I do something like this: The user is asked is asked to enter an int value, but I want to provide a default value on stdout, which they can back space and change it to whatever they want.. for e.g: Enter the... (4 Replies)
Discussion started by: the_learner
4 Replies

5. AIX

user login problem & Files listing problem.

1) when user login to the server the session got colosed. How will resolve? 2) While firing the command ls -l we are not able to see the any files in the director. but over all view the file system using the command df -g it is showing 91% used. what will be the problem? Thanks in advance. (1 Reply)
Discussion started by: pernasivam
1 Replies

6. Programming

Better than scanf

I don't know how to do this: printf("creazione nuovo messaggio\n"); printf("insert dest\n"); scanf("%s",dest); printf("insert object\n"); scanf("%s",ogg); printf("inserire text\n"); scanf("%s",test); ... (7 Replies)
Discussion started by: italian_boy
7 Replies

7. Programming

What is the difference between printf and putchar() or scanf and getchar() ?

Im a newbie to programming language, i found tat there r these function called printf and putchar() as well as scanf and getchar(), im curious abt why do dey hav these 2 different function although dey r doing the same instruction? :confused: (13 Replies)
Discussion started by: kris26
13 Replies

8. Shell Programming and Scripting

Passing argument 1 of 'scanf' makes po

$ cc Array.c Array.c: In function ‘main’: Array.c:23: warning: passing argument 1 of ‘scanf’ makes po Array.c:25: error: expected expression before ‘return’ Array.c:29: error: expected expression before ‘return’ Array.c: At top level: Array.c:44: error: expected ‘)’ before ‘&’ token... (8 Replies)
Discussion started by: sgradywhite
8 Replies

9. Programming

Scanf() string pointer problem

I have a problem with scanf() for string pointer as member of a struct. #include <stdio.h> #include <stdlib.h> struct Student { int studentNumber; int phoneNumber; char *studentName; //line 7 // char studentName; //line 8 }; int... (10 Replies)
Discussion started by: yifangt
10 Replies

10. UNIX for Dummies Questions & Answers

sed Or Grep Problem OR Terminal Problem?

I don't know if you guys get this problem sometimes at Terminal but I had been having this problem since yesterday :( Maybe I overdid the Terminal. Even the codes that used to work doesn't work anymore. Here is what 's happening: * I wanted to remove lines containing digits so I used this... (25 Replies)
Discussion started by: Nexeu
25 Replies
MPI_Buffer_detach(3OpenMPI)											       MPI_Buffer_detach(3OpenMPI)

NAME
MPI_Buffer_detach - Removes an existing buffer (for use in MPI_Bsend, etc.) SYNTAX
C Syntax #include <mpi.h> int MPI_Buffer_detach(void *buf, int *size) Fortran Syntax INCLUDE 'mpif.h' MPI_BUFFER_DETACH(BUF, SIZE, IERROR) <type> BUF(*) INTEGER SIZE, IERROR C++ Syntax #include <mpi.h> int Detach_buffer(void*& buffer) OUTPUT PARAMETERS
buf Initial buffer address (choice). size Buffer size, in bytes (integer). IERROR Fortran only: Error status (integer). DESCRIPTION
Detach the buffer currently associated with MPI. The call returns the address and the size of the detached buffer. This operation will block until all messages currently in the buffer have been transmitted. Upon return of this function, the user may reuse or deallocate the space taken by the buffer. Example: Calls to attach and detach buffers. #define BUFFSIZE 10000 int size char *buff; MPI_Buffer_attach( malloc(BUFFSIZE), BUFFSIZE); /* a buffer of 10000 bytes can now be used by MPI_Bsend */ MPI_Buffer_detach( &buff, &size); /* Buffer size reduced to zero */ MPI_Buffer_attach( buff, size); /* Buffer of 10000 bytes available again */ NOTES
The reason that MPI_Buffer_detach returns the address and size of the buffer being detached is to allow nested libraries to replace and restore the buffer. For example, consider int size, mysize, idummy; void *ptr, *myptr, *dummy; MPI_Buffer_detach( &ptr, &size ); MPI_Buffer_attach( myptr, mysize ); ... ... library code ... ... MPI_Buffer_detach( &dummy, &idummy ); MPI_Buffer_attach( ptr, size ); This is much like the action of the UNIX signal routine and has the same strengths (it's simple) and weaknesses (it only works for nested usages). For Fortran: The Fortran binding for this routine is different. Because Fortran does not have pointers, it is impossible to provide a way to use the output of this routine to exchange buffers. In this case, only the size field is set. For C: Even though the buf argument is declared as void, it is really the address of a void pointer. See Rationale, below, for more details. Even though the C functions MPI_Buffer_attach and MPI_Buffer_detach both have a first argument of type void*, these arguments are used dif- ferently: A pointer to the buffer is passed to MPI_Buffer_attach; the address of the pointer is passed to MPI_Buffer_detach, so that this call can return the pointer value. ERRORS
Almost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument. C++ func- tions do not return errors. If the default error handler is set to MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism will be used to throw an MPI:Exception object. Before the error value is returned, the current MPI error handler is called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed with MPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error. SEE ALSO
MPI_Buffer_attach MPI_Bsend Open MPI 1.2 September 2006 MPI_Buffer_detach(3OpenMPI)
All times are GMT -4. The time now is 07:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy