I have the following problem: I want to call my service a number of times. This number of times must be based on the number of times in my array. Below my step
All. I have a set of data that includes the following: Store Name Survey ID Number of surveys per store Score Each survey has a score, and then the overall scor
After a fair amount of googling I haven't found a clear answer to this question. I am writing a custom memory pool for a project I am working. You can think of
I am trying to do the layout that can be seen in the image below: It is full screen, the header and footer have fixed height (60px), the green sidebar is 200px
I’ve been struggling for hours trying to find a way to unit test my code. There’s no way to select the main target (MazeGeneratorTests is there b/c
I have a repeated print that prints a bunch of non null-terminated char*'s like so: int len1, len2, len3, len4; char *str1, *str2, *str3, *str4; get
I am trying to build a Webex bot with the Microsoft Bot Composer. When using adaptive cards, the data (turn.activity.value) is formatted to a dictionary: https:
I am trying to overload the ostream << operator for class List class Node { public: int data; Node *next; }; class List { private: Node *head;