Questions tagged [c-libraries]

63 questions
0
votes
0 answers

Function to send GET requests in LoadRunner using .h library?

I have script in LoadRunner, which sends POST requests using functions in .h library. I must write new function and add it to .h library to have possibility to send GET requests to web-service in LoadRunner. Could you tell me any idea, how to do…
Nadezhda T
  • 262
  • 8
  • 24
-2
votes
1 answer

Pass raw pointer return by unique_ptr()::get() to a function taking double pointer as function parameter

Code edit: https://gcc.godbolt.org/z/x3hnj46WY Scenario -1 Trying to pass raw pointer by reference (or pointer) can't pass value of get() using & to setBuffer() // Compilation error : lvalue required as unary '&' operand Scenario -2 Assign value…
-3
votes
3 answers

When we define functions in a program, do they get stored in the standard library?

Since there are two types of functions; Library functions and user-defined functions....when we define a function in a program, does that function get stored in the standard library just like the library functions?
1 2 3 4
5