C++ :: BEEP Function - How To Implement Morse Code Program

Mar 2, 2013

Code:
#include <iostream>
#include <windows.h>
#include <iomanip>
using namespace std;

[Code] .....

I'm trying to implement Morse code program. However, I cannot find any codes which make a time gap between the letters. How the time gap code?

View 4 Replies


ADVERTISEMENT

C/C++ :: Program That Will Display Morse Code

Apr 28, 2015

IM trying to make a simple program that will display morse code. Ex if you type 0 print should be (-----) and all the way up to 5. The problem is though that all printf displays all the numbers and not executing only the assigned variable.

#include<stdio.h>
int main(void) {
int a , b , c , d , e, f, x;

a = 0;
b = 1;
c = 2;
d = 3;
e = 4;
f = 5;
x = 6;

[Code] ....

View 4 Replies View Related

C++ :: Morse Code To English

Dec 8, 2014

I need to covert English to Morse code and vise versa. I found English to Morse however I cant figure out Morse Code to English. When it runs it read the first character of Morse Code but not the rest so .- would be outputted as ab.

#include <iostream>
#include <fstream>
#include <cstdlib>
#include <math.h>
#include <cctype>
#include <string>
using namespace std;
string texttomorse(char l) {

[Code] ....

View 7 Replies View Related

C++ :: How To Code And Implement Algorithm Using Python

Apr 6, 2014

I'm attempting to write the maximal clique algorithm for use with an adjacency matrix.I'm following a video which explains how to code and implement the algorithm using python. I want to write it for c++. URL....I'm currently trying to code the powerset function at 2 minutes into the video. I'm not sure if I should be using arrays or not.

So far I have coded the below but I dont know how to return an empty array inside an empty array (when the elts list is of size 0). I wrote an isEmpty function for the array since I cant use len(elts) like in python.

bool empty = true;
bool isEmpty(int elts[]) {
for (int z=0;z<10;z++) {
if (elts[z] != 0) {
cout << elts[z] << endl;
empty = false;

[code]....

The code should use either an array/list/vector that we call 'elts' (short for elements). Then firstly, it should add the empty list [], then the rest of the power set (all shown in the video).So for example, in the case that elts = [1,2,3,4], my code should return:[ [],[4],[3],[4,3],[2],[4,2],[3,2],[4,3,2],[1],[4,1],[3,1],[4,3,1],[2,1],[4,2,1],[‌​3,2,1],[4,3,2,1] ]

View 2 Replies View Related

C++ :: Implement Source Code That Turns Numbers Into English Text

Apr 18, 2013

I have been working on the same problem as mp252 from an earlier thread and 4 days later, I appear to have it working. Mine only goes from 0-9999 though as I must move on!

Code:
#include <iostream>
#include <string>
int getThousands(int number);
int getHundreds(int number);
int getTens(int number);
int getUnits(int number);
void printNumber(int number);

[Code]......

I had a scrap of paper like a mad scientist trying to find relationships between numbers and the values that they would return through my functions. This is how I arrived at the conditions of my if statements in 'void printNumber'.

I have seen other code that allows a greater range but I can't quite follow it (yet):

C++ code by fun2code - 67 lines - codepad

View 1 Replies View Related

C :: Sounding A Beep While Using Sleep

Feb 22, 2015

I need to be able to sound an alarm (a beep) for 10 seconds in C.this beep has to mirror a sleep period, before the code loops back to the beginning. Now I've got the loop sorted and I can make it beep and sleep, however the beep follows 10 seconds after the sleep..Both the beep and the sleep need to happen at the same time..

View 3 Replies View Related

C# :: System Beep Sound?

Apr 22, 2014

I code login form. In the textbox I want to clear if there are some text or close form if there's nothing. The problem is System beep sound occured when the text is cleared. Here's my code

private void tbPassword_TextChanged(object sender, EventArgs e)
{
string _enteredPassword;
while (tbPassword.TextLength == 8)

[Code]....

View 2 Replies View Related

C :: Cannot Find Way To Operate Duration Of Beep

Mar 2, 2013

I'm trying to build morse code, but seems like I cannot find the way to operate the duration of the beep.

View 4 Replies View Related

C :: Implement Setjmp For Function?

Feb 23, 2015

I am trying to implement setjmp for functions.

Code:
#include <setjmp.h>
#include <stdio.h>
jmp_buf arr[3];
void DISP(int x , int i)

[Code]....

Could I possibly use malloc to allocate memory for the stack too?

View 1 Replies View Related

C++ :: Program To Implement Bubble Sort

Feb 15, 2015

Design a C++ Program to implement the following functions:

a.)the function for bubble sorting : int bubblesort(int*a,int size).
b.)the function for merge sorting : int mergesort(int*a,int size).
c.)the function for generating array of random elements: int generate(int*a,int size) which calls the function rand() in c++.
d.)Test both bubble sorting and merge sorting with 10,100,1000,10000,100000 and 1000000,4000000 integers.

The integers are from the array generated by part c).calculate the time spent in calling each sorting.you may use a function in <time.h>to get the current time. Draw curves to compare the speed performance between the two functions. The merge sorting algorithm implementation must use recursion. you are expected to define a global array for holding result from merging two arrays.otherwise,it may cause a lot extra money in recursion.

Hint 1:use the following format to calculate the time cost for bubble sort.

{……..
Time1=Get the current time(call a function in <time.h>);
Bbblesort(….)
Tme2=Get the current time(call a function in <time.h>);
Time_cost=the difference between time 1 and tim2;
…….
}
Print your program and test results

View 1 Replies View Related

C/C++ :: No Output When Implement Own Strcpy Function

Aug 20, 2014

I am trying to implement own strcpy function, but no output is being printed.

#include<stdio.h>
#include<string.h>  
void strcpy_own(char dest[], char src[], int len);  
int main() {
    char src[15]="jeevan", dest[15];

[Code] ....

View 3 Replies View Related

C/C++ :: How To Implement Pointers To Call The Function

Mar 11, 2014

write a program which contains two global variables:

1.Account number (integer)
2.Account Balance (float)

and three functions :

A function called set values which sets initial values for account number and account balance,

A function called set values which prompt user to enter the values of the above variables,

A function called input transaction which reads a character value for transaction type that is D (for deposit) and W (for withdrawal ) and a floating point value for transaction amount which updates the account balance .

Implement a pointer to call each of the functions using C++.

View 1 Replies View Related

C++ :: How To Implement Mean1d Function To Find Mean

Nov 2, 2013

Code:
#include <iostream>
using namespace std;
int main() {
//I'll be making a 1 dimensional array
int array1d[25];

[Code] .....

View 1 Replies View Related

C++ :: Implement Program For Evaluating Infix Expressions

Dec 3, 2014

Also, can't use namespace std for this.

#include<iostream>
#include<stack>
#include<fstream>
#include<iomanip>
#include<queue>
#include<cassert>

[Code] ....

/* It will read in a infix expression from a text file.check if the parentheses in the input expression are balanced.convert the infix expression into a postfix expression and evaluate the expression.*/

int main() {
string expression;
string postfixExpression;
double result;
testBalanced();

[Code] ....

View 8 Replies View Related

C++ :: Design And Implement A Program That Consists Of Two Classes?

May 15, 2013

I am trying to design and implement a program that consists of two classes. The Base class A is purely for supporting class B. I do not want to be able to create an object of class A. When object B is created it inherits from class A.

What is the best way to achieve this?

View 8 Replies View Related

C++ :: Implement Simple Wrapper For Logging Function

Jul 22, 2014

I need to implement simple wrapper for logging function log(const char *). So the solution is below:

#include <stdio.h>
#include <sstream>
using namespace std;
void log(const char * str){ printf(str);}

[Code] ...

So, according to standard the temporary objects should not be destroyed before full expression execution (expression whitch is not a part of another expression).

The question is: is StreamLogger() << "foo1" << "foo2" << "foo3"; full expression or not?

View 2 Replies View Related

C++ :: Implement Quick Sort Algorithm Using Recursive Function

Feb 13, 2013

I have written this code to arrange user input array in an order.

//Recursive Quick Sort
#include<stdio.h>
#define ARRAY_SIZE 10
void quick_sort(int array[], int len)
}

[code].....

View 6 Replies View Related

C++ :: Singleton Base Class - How To Implement GetInstance Function

Aug 20, 2014

I'm playing with the idea of a singleton base class, but I'm having an issue with how to implement the GetInstance() function in the base class. Since I'm trying to make this ridiculously simple for the child, I'd like to handle that in the base.

class Singleton {
private:
static Singleton* instance;
Singleton() { Construct(); } // Private to avoid other instances

[Code] .....

It would be easy to use like so:

class Hello : public Singleton {
private:
std::string hello;
void Construct() { hello = "hello"; }
public:
std::string GetHello() const { return hello; }
};

Then the instance would be handled like so:
std::cout << Hello::GetInstance()->GetHello();

View 12 Replies View Related

C++ :: Implement Member Functions Of Class Function - Failing To Get Input

Aug 17, 2013

I am supposed to implement the member functions of class Person.

class Person {
public:
Person();
Person(string pname, int page);
void get_name() const;
void get_age() const;

[Code] ....

The code I wrote is below. Where I am struggling is the program does not allow me to input age. Therefore, I cannot test if my temp for age works. It automatically defaults to 0 because it hasn't taken input. Here is my code:

// Program Title: Person function
// Program Description: The program prompts the user for first and last name and age.
// It then prints the output that was provided by the user.

#include<iostream>
#include<string>
using namespace std;
class Person {

[Code] .....

View 13 Replies View Related

C++ :: Binary Search Tree - How To Implement Insert Function Properly

Nov 18, 2013

I am unable to implement the insert function properly, every time i run the program i just get the first value and name, I am not getting other Id's and name.

"(Header File)"
#include <iostream>
#include <string>
using namespace std;
class node{
public:
int ID;
string name;
class node *left, *right, *parent;

[Code] .....

View 4 Replies View Related

C :: Program That Can Implement Functions That Store / Get And Deletes Text / Binary Data To Given Memory Area

Sep 19, 2013

I got an assignment at school asking for a program that can implement functions that store, get and deletes text/binary data to a given memory area. We are supposed to make kind of like a tiny-mini OS..any links to some tutorials or explanations hon ow to understand this and be able to make a program like this on my own?

View 9 Replies View Related

C++ :: Put Code In A Function

Feb 25, 2014

this is my code i want to put the part where i have it do multiplication and addition into functions. and then call them so that it can run the addition and multiplication. Heres my code

# include <iostream>
using namespace std;
int main(){

[Code].....

View 2 Replies View Related

C/C++ :: How To Add Animation To A Program Or Code

Sep 7, 2013

I've been wondering how some program using codes is animated?

View 3 Replies View Related

C :: Function Return Code / Value?

Sep 27, 2014

I have a function that needs to return a "uint8_t" value. However before doing the processing I need to perform a test on the argument to check if it's between expected boundaries. Although this function works it gives (a logical) warning that not always a value is returned although expected. What is the normal way for functions like these where I normally should return e.g. -1 in case the test doesn't succeed and otherwise the uint8_t (t) value?

Code:
uint8_t myFunc(int a) {
if (a >= 0 && a <= 100) {
// Perform actions
uint8_t = ...
return t;
}
}

View 9 Replies View Related

C :: Program Exits With Return Code Three

Aug 24, 2013

Code:

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <SDL/SDL.h>

[Code]....

I don't know why since I've assigned a value like that to a variable of that same type before. Unless I had garbage data somewhere and didn't realize it.

View 9 Replies View Related

C++ :: How To Output File Into New Program Or Code

Apr 24, 2013

//code
ofstream outFile;
outFile.open("p4a.dat");
outFile << setw(8) << "90.0";
outFile << setw(8) << "75.0";
outFile << setw(8) << "36" << endl;

[Code] .....

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved