Tagged Questions
0
votes
1answer
19 views
How to use scanf in a loop to read data until a EOL?
the problem I have is as follows:
I need to create a function in C, using the standard libraries.
This function should read data from standard input as follows: value1 value2 value3
Whose type is ...
-3
votes
1answer
72 views
Why should a function not return a local array? [duplicate]
char* f()
{
char s[100];
//....function body code
return s;
}
Why should it not be written like this?
3
votes
4answers
74 views
function assign to variable in C
Why the following code return error when variable is declared global.
int add(int x, int y) {
return x+y;
}
int ab = add(10, 20);
int main(void) {
printf("%d", ab);
}
But if I call like ...
0
votes
0answers
19 views
Calling C functions from fortran
I'm trying to call C functions using fortran (need this for a project).
So first was trying to simply call a non parametrized, void function via fortran.
Kindly help me resolve the following errors ...
0
votes
2answers
43 views
Idea on how to create a C function that takes a character string and returns a character string with date and time
I'm pretty much new to C and I would like to write a function where it takes a character string and returns a character string with current date and time in the front. I need it for some logging ...
1
vote
2answers
51 views
2D arrays passed through functions in c
I'm having a problem with my program. I need my program to read from a text file, the first consists of the dimensions of the 2d array the rest is the contents of the array. I have coded the readWord ...
0
votes
1answer
60 views
How can I set the value of an uninitialised pointer in a function in C?
I'm currently doing an assignment in C and it's the first time that I've really had to understand pointers. I'm mostly getting the hang of it, but it's thrown me into the deep end (at least in my ...
-5
votes
3answers
53 views
Call a function while setting value of a declarement [closed]
I want to call a function while setting a value.
For example:
int i;
i = 123; //Here i want to call a function.
//Want to do this:
//i = 123;func();
//But i do not want to do like this.
Can i add ...
6
votes
5answers
90 views
In C how is this parameter declared in the function?
I am trying to learn the basics of C using 'The C Programming Language - Brian Kernighan and Dennis Ritchie'
In the program below, I don't understand where the value for 'maxlineLength' comes from?
...
0
votes
3answers
109 views
Cannot pass a variable of my own (non-standard) type to a function
I'm writing a program that must normalize audio *.wav file.
There is a task "to display header's data": ChunkId, ChunkSize and so on.
I want to make a function named display_hdr (In order to have ...
-3
votes
1answer
62 views
Passing a double pointer to a function as reference - c
I'm having hard times trying to pass the reference of double pointer to a function.
I have this:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_ROWS 2
...
-5
votes
7answers
71 views
In C, calling a function from main [closed]
In C, I tried to call a function printSum from main. But the main function isn't calling printSum, its just printing out "Hi!" which is a print statement from main. I am not sure why printSum is not ...
0
votes
5answers
47 views
Reversed String Using Recursion Functions
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void rec(char pin[]);
main()
{
char pin[100];
printf("Give word: ");
scanf("%s", pin);
rec(pin);
...
0
votes
3answers
46 views
How to change 2 strings using a function, by changing their pointers' value
main()
char *s1="Second";
char *s2="First";
swap(s1,s2);
printf("%s\n",s1);
printf("%s\n",s2);
I have as an exercise, to swap those 2 strings above (so that the one that executes the program will ...
0
votes
1answer
44 views
Bubble Sort function in C
I'm beginning C language lessons, specifically functions. My task is to sort the structure of arrays by numerical value, in this case that value is the variable 'age.'
I'm unsure how I should ...
8
votes
4answers
298 views
Get last function called in C/C++
I'm using an API and I find myself writing a lot of error-handling code of the general form:
if (errorCode = functionName(params))
printError(errorCode, "functionName", __LINE__, __FILE__);
...
0
votes
0answers
15 views
Eclipse using CDT doesn't give variables correct to functions
I am currently writing a C program to calculate the result of a sinus-function. It looks like this:
#include <stdio.h>
#include <math.h>
double mysin(double x, int n);
int main(void){
...
3
votes
3answers
81 views
what will a function return if there's no explicit 'return' [duplicate]
I bumped into this problem when I forgot to write the return clause of a function, but there was no warning or error in gcc. I fixed it but started wondering why the function would return something ...
6
votes
5answers
114 views
Is not passing all the arguments to a function bad?
I've been experimenting with 'dynamically calling functions' using the source code below. After successfully testing this code with testing_function only accepting the first two arguments, I added in ...
1
vote
1answer
43 views
Can arrays inside functions be initialized with the return value of functions?Is “int arr[2]={strcmp(”a“,”a“),strcmp(”3“,”5“)};” correct?
Aren't only variables of static storage type expected not to be initialized with return values of functions as those are not considered constants?Going by that argument,isn't the following declaration ...
1
vote
2answers
69 views
My function filling string value
I have the following function
void runSysCall(char *command, char *output)
{
FILE *cmdline = popen(command, "rb");
size_t size = 0;
while(getdelim(&output, &size, 0, cmdline) ...
-1
votes
4answers
51 views
C free variables declared inside function
Imagine this code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAXSTRSIZE 2048
int main()
{
char *str;
str = get_string();
return 0;
}
...
2
votes
2answers
72 views
Accessing external function using function pointer in C
Im trying to link to a extern function using a pointer to it. But everytime I try, I get compiler errors that the extern function is undeclared. I have little experience with external functions, and ...
-3
votes
2answers
68 views
Menu with functions
I have a question about functions with c language. I have a menu that inserts numbers calling a function but the problem is that i dont want to use a for, i want to insert the numbers one by one every ...
-3
votes
1answer
51 views
Code not showing return [closed]
I am trying to write a function definition for function maximum which returns the largest of three integers. But it is not returning the largest.
Here is my code:
int maximum( int x, int y, int z ) ...
-2
votes
2answers
49 views
Showing error in function pointer code [closed]
I have written a code that uses function pointers to compare strings. But, it is showing me errors and I don't know how to correct them. Here is the code:
#include<stdio.h>
...
-7
votes
0answers
41 views
please help i would like to know whats wrong with this program,please ASAP [closed]
hey so in my code there's an array,in this array third of the numbers in it are divided by 3 without a remainder,the other third are numbers that have the remainder oof when divided by 3 and the last ...
1
vote
5answers
67 views
Why should or shouldn't we prefer a macro that accepts arguments over a function that does the same job?
Following are two programs that give the area of the circle when the radius is passed as argument.But in the first program, macro.c, I am using a macro for the job ,while in the second,function.c I am ...
-1
votes
0answers
90 views
if/else statement returning incorrectly
I'm having real difficulty attempting to get an if/else statement to return true. Towards the end of the code there is an interrupt service routine. Within it there are 3 if statements related to the ...
1
vote
3answers
68 views
Returning void from a double function?
I have a function which is a double and normally returns the new value for a variable, but sometimes I don't want to change the variable and I would like to signal that by returning a special value, ...
1
vote
0answers
60 views
Programming a Z-Domain Function in C
I'm trying to create a simple PID simulator in C. It is a simple cruise control system and I have chosen to model my system as a low pas filter.
I'm having difficulty writing my mathematical model in ...
0
votes
2answers
57 views
Function removes extra spaces but leaves one space between words in a char pointer
I need a function that will take a char pointer like char *s = "abc def gf ijklmn". If it is passed through the function int space_remove(char *) it should return the number of extra spaces and ...
-1
votes
0answers
39 views
passing char* argument to function in C
I have the following function:
void func(unsigned char* src,unsigned char* dest){
//do something with dest, using src
for(i=0;i<10;i++){
//print some dest values
}
}
I call this ...
0
votes
1answer
38 views
Clarification on concept of callbacks and function pointers in c
I found this line on wikipedia about function callbacks,
"In computer programming, a callback is a reference to executable code, or a piece of executable code, that is passed as an argument to other ...
0
votes
2answers
115 views
Measuration By Division [closed]
The function is y=x^2+2x+1 and the domain is from 0 to 10. If you enter the number of intervals, your program prints the result. Complete the function, MeasurationByDivision().
I made below C code, ...
0
votes
1answer
49 views
For a function pointer func_ptr,(*func_ptr)() invokes the function.But why are (****func_ptr)() or (***func_ptr)() valid?
Suppose func_ptr is a function pointer to the function test().Then we know that can invoke the function test() using this pointer as
(*func_ptr)();
But I was told today that even ...
0
votes
3answers
49 views
Changing stdout (putch() function) on the fly in C
I'm using the XC8 compiler. For that, you have to define your own void putch(char data) function in order for functions like printf() to work, as is described here. Basically, putch() is the function ...
0
votes
3answers
40 views
What do we have in the bytes beginning at the “Address of a function”?How to know how many bytes to consider?
My brain gets numb just even imagining this.So bear with me if my question is little wordy.So I've sliced my question into parts.
1) What do we have at the at the bits/bytes starting at the address ...
0
votes
1answer
59 views
How can I get this C program to call this function without modifying the code?
I was wondering if it was possible to get ret to be called without modifying the code. Thanks for looking!
#undef _FORTIFY_SOURCE
#include <stdio.h>
#include <stdlib.h>
...
2
votes
3answers
73 views
Filling the arrays with different data type by 1 function
I have to fill the 2 arrays of int and double using function.
So, i make 2 almost the same functions, which differ only by data type.
void fill_double(double* arr,int n)
{ ...
1
vote
2answers
53 views
Passing pointer to SOCKADDR_IN and SOCKET in a function
I have a function createServerSocket(). This function can be accessed by multiple threads for creating their sockets.
I want each thread to pass three arguments, a socketIdentifier, *sockaddr_in* ...
0
votes
1answer
34 views
MPI creating structs over functions in C?
I'm creating a struct to send over MPI but am having a little trouble with using the struct in other functions..
typedef struct Coordinates
{
int x;
int y;
} XY;
int main (int argc, char ...
1
vote
2answers
47 views
undefined reference to 'freeHeap'
I have encountered a problem when calling my freeHeap function inside of sortComp.c
I am calling it as such
heapRef myHeap = buildHeap(numData, heapSort, numData);
freeHeap(myHeap);
When ...
0
votes
1answer
22 views
End of menu is closing program
I've currently got a working linked list within a function, my program begins by calling a menu (switch statement in a function) in main, which then gives you the option to:
Add data into the ...
0
votes
2answers
36 views
Function: variable substitute
I'am having some trouble with the code below; I know it's rudimentary stuff for you more experienced coders, but this is my first time trying to code something in C so please bear with me.
#include ...
1
vote
2answers
72 views
passing pointer char argument to function in thread
When I execute this code, I'm receiving a "segmentation error (core dumbed)".
#include <pthread.h>
#include <stdio.h>
void function(char *oz){
char *y;
y = (char*)oz;
...
3
votes
1answer
47 views
Trying to get this display function to work
So I'm trying to get this code to draw a card, and then each time printcards in called it prints the previous card and the new card. Right now it it prints off one card and then another while I want ...
0
votes
6answers
102 views
C Assign Pointer to NULL
I am misunderstanding something basic about pointers in C, this should be simple but search brings up nothing. I do not understand the behaviour of the following code;
#include <stdlib.h>
...
2
votes
4answers
66 views
While making a function call in C, is the stack of OS used, and is the size of stack fixed?
Here's my code
#include<stdio.h>
#define ROW 10000
#define COLUMN 10000
void hello(int arr[ROW][COLUMN]){
printf("hoho");
}
void main(){
int arr[ROW][COLUMN];
hello(arr);
}
Now, ...
-1
votes
1answer
33 views
Sorting the output of a function to display from High to Low
I have a struct, defined as this:
typedef struct structure
{
char names[20];
int scores[4];
float average;
char letter;
} stuff;
And from that struct created this array:
stuff everything[13];
...







