Tagged Questions
2
votes
3answers
2k views
Does C have __func__ functionality for names of the arguments of a function?
Does the "C" standard support something similar to __func__ for the function arguments' names?
1
vote
5answers
93 views
Optimized implementations of some functions from ctype.h
In one of my C application I am using, below functions from ctype.h :
isalpha(), isspace(), ispunct(), tolower().
After profiling I see there are some bottlenecks in the calls of these ...
0
votes
1answer
118 views
i cant call my multidimensional array function from my main function. what is wrong with my parameters? declarations? variables? etc [closed]
#include<stdio.h>
#include<string.h>
#define MAX_VAL 100
//Function declaration
int input_values(int Z[][k], int j, int k);
int main(void)
{
int A(int [ ][k], int, int);
int m, n;
...