C
In computing, C is a general-purpose, block structured, procedural, imperative computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
Application
Any
Platform
Any
License
Any
Any function code must be outside of any other function code. I moved it out of main() - just before main(). Also, syntax of using other functions is not proper. When function is called - you do not...
I need to write a function called distance that calculates the distance between two points (x1,y1) and (x2, y2). All numbers and return values should be of type double.
Here is what i have so far...
I'm trying to do a binarysearch in this piece of code that i have here. if the array has been sorted use a binary search, if it is not sorted use a sequential search. I've manage to get the...
This is a sample project for a virtual HS programming class (not graded) and I am stuck on the math expressions and cant figure out what I am doing wrong...I am thinking it could have something to do...
I want to use 32 bit colors for designing a gui for my program using turbo c 3.0. How can i??? please help me friends............
I shall be really thankful to you people
I want to use 32 bit colors for designing a gui for my program using turbo c 3.0. How can i??? please help me friends............
I shall be really thankful to you people
For a course on musical acoustics, I've written a program that allows the user to draw a wave shape. I'd like the user to be able to hear that wave shape. The program is in C++, and the "shape"...
Hello,
how can I find a buffer overflow in C/C++.
For example:
int x;
int y;
int z;
x = 0;
y = 8;
z = 8;
Thanks
: I don't know Fuzzy myself, but I do know that there is a support on
: assembler level for Fuzzy logic on various processors.
:
: So I reckon the answer to your question depends on what CPU you...
Thank ou very much for the suggestion.
I don't know Fuzzy myself, but I do know that there is a support on assembler level for Fuzzy logic on various processors.
So I reckon the answer to your question depends on what CPU you are using...
I am developing an application which at one point needs to do some pattern matching. Specifically, I have 2 similar linear sets of data. I want to match the points at which the data goes up and...
The Unit Testing Framework supports unit testing in Visual Studio. Use the classes and members in the Microsoft.VisualStudio.TestTools.UnitTesting namespace when you are coding unit tests. You can...
Strange enough I just increased the size of the descrip and name arrays and the whole file is now printing to the screen. So that takes care of that.
meal.unitCost;
inFile.getline(meal.descrip, 55, '.');
inFile.ignore();
cout
inFile.getline (meal.name, 22, ",");
should be
inFile.getline (meal.name, 22, ',');
and so on. You can tell this by reading the warnings carefully.
Hey. I'm trying to create part of a program that will read data from a text file, store the data into variables and then write the data into a random access file. So far this is what I have....
Begin by entering graphics mode in Turbo C - read about initgraph() function.
The digits are formed by two types of figures: vertical segment and horizontal segment. So, to draw these types of...
Hello there
This is my 1st post in this forum.I am trying to make a digital clock by Turbo C. Can anyone suggest me how to start.