The scanf() function reads and converts data with specified format(s)

learn more… | top users | synonyms

0
votes
1answer
37 views

Vector Input Using Scanf (C language)

First time user of stackoverflow, but long time visitor. I thought it would be prudent to start being more involved. But first, I have a small question :) Basically what I'm trying to do is take in 3 ...
3
votes
1answer
42 views

Why is the %n format specifier working normal for all scanf() statements but storing one less in the first one?

The %n format specifier,when used in a scanf() is expected to store the count of the number of characters of the format string already processed by the function into an argument of type int*.According ...
-1
votes
1answer
53 views

How to make getchar() not get the ENTER I did before?( in C)

here's the problem: I have to read a bunch of numbers(student's grades) , calculate their average, and if the average is under 70 i have to apply a factor to the grade(grade curve) either +x or *x ...
5
votes
2answers
84 views

do … while loop isn't working in main

I wrote a simple program with a function that calculates the area of a circle. The program also asks to the user if he wants to calculate it again and if the input is 'N', the program is supposed to ...
0
votes
1answer
20 views

c: skip an element with scanf

I'm trying to scan a file that contains 13 ints which are to be stored in 13 variables. Is there a way to loop over this, while skipping the i-th element? I'm anticipating there might be a solution, ...
3
votes
1answer
59 views

C - using scanf to capture date (mm dd yyyy)

This is my first question on Stack Overflow, so bear with me. I'm writing a program that calculates the number of elapsed days between two dates. To do this, I have to input the dates as integers in ...
0
votes
2answers
45 views

Dealing with int arrays in c++

I was looking at some c++ code as I am trying to learn it and came across something strange and I have no clue what is going on. int A[100000]; int main() { int N; scanf("%d", &N); ...
1
vote
2answers
44 views

Doesn't %[] or %[^] specifier in scanf(),sscanf() or fscanf() store the input in null-terminated character array?

Here's what the Beez C guide (LINK) tells about the %[] format specifier: It allows you to specify a set of characters to be stored away (likely in an array of chars). Conversion stops when a ...
-1
votes
4answers
62 views

What value does a static variable store when inputted into?

#include<stdio.h> char *getname() { static char name[30]; scanf("%s",name); return name; } void main() { char * name1,*name2; name1 = getname(); name2 = getname(); ...
0
votes
3answers
51 views

scanf inside while loop working only one time

so i have this code, which is supposed to get coordinates from user: #include <stdio.h> #include <time.h> int main() { int number; char letter; int points = 3; while(points < 8){ ...
-4
votes
5answers
68 views

What is wrong with this If statment

Trying to validate the input of this Scanf, im getting an error saying expected expression before '>' token. Also how would i make the code retry the scanF again? printf("Enter Source Number between ...
2
votes
2answers
68 views

Scanf Validation

Can someone help me validate the inputs for the Scanf's i have below. I want the programme to ask for the data to be re-entered if the Scanf's are within an incorrect range or not an interger. I put ...
0
votes
2answers
40 views

Two dimensional array Scan Crash

scan arr function problems. void scan_arr(double ar[3][5]) // Declares that it is a 3 x 5 { int x; int y; printf("Enter arrays of 3x5\n"); for( x = 0; x < 3; x++ ) // Shows that ...
0
votes
0answers
20 views

printf in SPARC prints i for every character

Writing an assembly program that takes in a character and prints it. But for every character no matter what it returns i. The input could be e, j, i, or 8. It always prints out i. .section ".data" ...
1
vote
1answer
32 views

A strange behaviour of getchar()

An odd behaviour of getchar() and scanf ocurred in the code below: if I insert, in the line /*K1*/ ch = getchar(); the code works properly in the line /*k*/. I mean, without the calling to getchar ...
-4
votes
1answer
54 views

How to read strings separated by ',.“/()” " \n [closed]

I'm trying to read strings separated by ',."/()" " \n, until EOF. I only need to read words and numbers -- that will, later, be added to a tree. An example of input text: Luis Vaz de Camoes Os ...
0
votes
1answer
24 views

Function scanf with JNA

I'm trying to use the Function scanf with JNA. package importDLLs; import com.sun.jna.Library; import com.sun.jna.Native; public class JNATest { public interface CLibrary extends Library { ...
0
votes
1answer
50 views

Where does scanf leave the file pointer?

So I have something like this: while (scanf("somepattern",arg1,arg2)==2) { if(arg1==0) break; <code here> } if(scanf("someotherpattern")==1) { <code here> } My question is: ...
0
votes
3answers
52 views

double precision lost when parsing csv file in C

I'm trying to read in a file in c with the following format: 6.43706064058,4.15417249035 3.43706064058,1.15417249035 ... I'm able to parse out the two doubles, but when I print out what I've ...
0
votes
2answers
54 views

Pointer to Scanf with malloc, unpredictable results

Im trying to make my programme store the results of a Scanf into memory using a pointer and malloc, i want the Scanf to only be able to accept intergers here is my code. When i Printf the result it ...
-4
votes
1answer
177 views

What does a number between '%' and format specifier mean in scanf ?

I know the options used in format specifier for printf(), but I am totally clueless about what something like %3d could mean, as in the code below. scanf("%3d %3d",&num1,&num2); To be ...
0
votes
1answer
39 views

modulus returning incorrect amount in c program when a negative number is entered [duplicate]

Can someone please help me figure out why this program gives the wrong answer for a modulus operation when a negative number is entered in this c program? I am pretty sure what is causing the ...
0
votes
4answers
71 views

How to read a multi line using fscanf

I want to read my data.txt file which looks like and store it in an array called buffer[i][j] 1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 I am writing a code which looks like #include"stdio.h" ...
1
vote
3answers
87 views

Using the return value of “scanf()” to check for end of file

I was searching the net on how to use return value of scanf to check the end of file! I found the following code.But i am having difficulty in understanding? How is this method working? What does ...
0
votes
5answers
102 views

C programming language (scanf)

I have read strings with spaces in them using the following scanf() statement. scanf("%[^\n]", &stringVariableName); What is the meaning of the control string [^\n]? Is is okay way to read ...
1
vote
2answers
71 views

Scanf unsigned char in hex

I am trying to change data in array, this is part of my code: u_char paket[100]; //here i put some data into array and then trying to change it by user scanf("%hhx.%hhx.%hhx.%hhx.%hhx.%hhx", ...
0
votes
1answer
79 views

Why doesn't my final scanf stop and read user input?

Can anyone tell me why my code works fine until I get to the final scant, where I ask the user if they'd like to play again? For some reason, the program seems to ignore this line of code. Please be ...
0
votes
3answers
78 views

Getting multiple lines of input with scanf() in c

I am trying to grab multiple lines of input with scanf, all the lines have the same formatting example line: 1, 05:05:04, 1, 1103 the current code I have grabs only one line scanf(" %d, %d:%d:%d, ...
0
votes
3answers
59 views

fixed length array in scanf.Warning with format

So I have typedefed the following : typedef char array[25]; In my code somewhere I call scanf like this : scanf("%s",array); But I get the warning that %s was expecting a char* while I pass a ...
1
vote
2answers
64 views

Scanf() don't read number 0 or read is wrong

Hello I have a litlle problem. I trying to make a bank wait time program but the time i read a 0 value with scanf() it do not read or read wrong. I did some search but noting that solves my problem. ...
0
votes
4answers
89 views

Why can printf() resolve the variable name to access the value stored in it but scanf() cannot (in C programming)?

scanf() needs a pointer as argument but printf doesn't. printf just needs the variable's name and it somehow seems to obtain the value stored in the memory location of the variable. Why wasn't scanf ...
0
votes
1answer
103 views

scanf in x86 assembly language

I try to sort using x86 assembly language. I use scanf for taking in the values but I am not able to limit the number of elements to take. That is, my output is: Enter the number of elements less ...
-4
votes
1answer
116 views

C programming printf, scanf [closed]

Hi i have written this code, but the output gets like : How many Miles have u traveled?: (number of times that u display) How many gallons of gasoline have u consumed?: and then it just skips ...
2
votes
2answers
71 views

Is there an Equivalent scanf function in Lua?

As the title said: Is there an Equivalent scanf function in Lua? I mean, I want to have a syntax like this: word_typed = lua_scanf() Once I have written a string(let's say "123 is perfect ...
0
votes
3answers
67 views

sscanf until it reaches a comma

I'm trying to scanf words and numbers from a string looks like: "hello, world, I, 287876, 6.0" <-- this string is stored in a char array (string) What I need to do is to split things up and ...
2
votes
1answer
80 views

Why does my C program produce strange printf output?

My source code is as follows: #include <stdio.h> int main() { float latitude; float longitude; char info[80]; int started = 0; puts("data=["); while (scanf("%f, %f, ...
3
votes
3answers
69 views

scanf - program waits for another like?

In the following program, I expect that after entering a word and hitting the enter key I should immediately see the message printfed out. However, it doesn't happen until I enter some other random ...
3
votes
2answers
54 views

Why 2nd scanf doesn't work in my program?

scanf("%d %c",&size,&chara); works but separate scanf for character input does not work. I show these inside the code. Why is that? void squareCustomFill(int size, char chara); int ...
0
votes
3answers
61 views

why doesn't scanf work properly

I want to input 16 characters in an array one by one... #include<stdio.h> void main(){ int i,j; char a[4][4]; printf("Enter Values in array : "); for ( i=0 ; i<=3 ; i++ ) { for ( j=0 ; ...
0
votes
3answers
91 views

exact multiple scanf input

I'm wondering on how to basically input exactly 5 numbers (integers specifically) in one line using simple commands such as while, if and arrays. For example: if I input 5 numbers separated by spaces, ...
0
votes
2answers
73 views

Scanf statement

#include <stdio.h> #include <stdlib.h> Hello, I was wondering why this program doesn't execute. It seems as though I've always been having trouble with performing the scanf function ...
-1
votes
1answer
42 views

What is the explanation for this behaviour of scanf?

I have this code : #include <stdio.h> int main() { char vc[5]={1,1,1,1,0}; int vi[4]={0,0,0,0}; printf("Reading characters...\n"); for(int i = 0 ; i < 4 ; i++) ...
0
votes
1answer
72 views

How to be definite about the number of whitespace fmt.Fscanf consumes?

I am trying to implement a PPM decoder in Go. PPM is an image format that consists of a plaintext header and then some binary image data. The header looks like this (from the spec): Each PPM image ...
1
vote
1answer
135 views

Does sleep() interfere with scanf()?

I have two threads xThread : Continuously Prints X on the console inputThread: Gets input from the stdin The continuous printing stops when the user enters 'C' or 'c' #include<stdio.h> ...
0
votes
4answers
92 views

Using the scanf() function

I intend to modify each other letter of a particular string. But for the purposes of this program none of that occurs. So far I've grabbed a string from the user and stored it in userinput and intend ...
0
votes
2answers
132 views

Invalid input value while using char and scanf “%hhu”

So this is the code void main() { unsigned char n,t; scanf("%hhu %hhu",&n,&t); printf("%hhu %hhu",n,t); } The problem is when I input 5 and 1 respectively, the output is 0 and 1. 0 ...
3
votes
3answers
110 views

scanf asking twice for input while I expect it to ask only one

#include<stdio.h> #include<stdlib.h> #include<string.h> char *method1(void) { static char a[4]; scanf ("%s\n", a); return a; } int main(void) { char *h = method1(); ...
2
votes
3answers
51 views

using read system call after a scanf

I am having a confusion regarding the following code, #include<stdio.h> int main() { char buf[100]={'\0'}; int data=0; scanf("%d",&data); read(stdin,buf,4); //attaching to ...
-4
votes
1answer
128 views

APPCRASH (c0000005) in program when function loses scope

When I left out the second parameter on the scanf() function by mistake, the program still compiled and ran but the executable experienced the following error: "APPCRASH" with the exception code ...
-3
votes
1answer
106 views

C #2140: Type error in argument 1 to 'scanf'; expected 'const char * restrict' but found 'int' [closed]

I'm using Pelles compiler for windows. I got two errors #2168: Operands of '&' have incompatible types 'char *' and 'char *'. #2140: Type error in argument 1 to 'scanf'; expected 'const char * ...

1 2 3 4 5 14