Filling a dynamic array with integers c++ [closed] - c++

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 27 days ago.
Improve this question
how to fill a dynamic array with input from the console? Im begginer
and can't understand it.
some help will make my day :|

You can realize this in several ways. Have a look on following post may it will help you..
Using scanf() in C++ programs is faster than using cin?

Related

Exercises - Doubts [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 days ago.
Improve this question
Good Morning
I'm in a journey of studying C++ and was making some exercises but I can't figure out why the answer of this exercises are wrong. Note: The answers I shown are wrong.
Can I have some help ?
Thank you a lot

how to add number to the end of the string in c++? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I did various implementations but they take a long time
Can anyone give us the best implementation?
For example, add a ten-digit number to the end of a string
I did not find a good answer on the Internet
#include <iostream>
std::string a="string";
long n=1703705707;
a.append(std::to_string(n)); //becomes "string1703705707"

How to make a MATLAB function to be run in html? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I've developed a MATLAB code that I think it is useful to be used by researchers. How can I embed it in a website to be used free?
It gets two integers and return a set of integers
Also it is possible to convert it to c++, If it helps.
Thanks
Submit your m-file(s) to Matlab Central File Exchange, this is the perfect place for it.

How do I write a TCP app for AX22xx [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am have brought a Development board AX22001. I want to write an TCP app server/client.
But I don't really know, where to write app and how to program it over.
Do anyone in here have got any experience with AX22001?
I hope you guys can help, I did try to write to AX22001 support but they are too slow answering my questions.
You know, there's a fairly comprehensive amount of information, demo code, manuals, APIs, and references on their website: http://www.asix.com.tw/products.php?op=pItemdetail&PItemID=106;72;104. My suggestion would be to start reading through it!

BSDF - need an example [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I'm trying to understand in a simple raytracer what does the BSDF function does and in theory I got it but in practice I don't know how to implement one.
Can someone point me out some simple examples (well-explained if possible) on how to use it?
check PBRT project. It is great book, but if you do not want to read it, there is well documented source code availabe: PBRT