Computer Science
Computer science is the study and the science of the theoretical foundations of information and computation and their implementation and application in computer systems.
Language
Any
Platform
Any
License
Any
how to write reverse a string program in c?
how to write Reverse string program source code using pointers in c programming language..?
Armstrong numbers in c?
palindrome numbers program in c?...
PLS ITS URGENT ..HELP ME SOLVE THIS PROBLEM...
2. Each student in a class of 30 students takes 6 tests in which scores range between 0 and 100.
Suppose the test scores are stored in a 30 * 6...
Hi guys; I am new to the programming world, just beginning to study in my A Levels so hopefully this shouldn't be a problem for you guys
For my homework assignment I need to devise a 2Dimensional...
SELECT emp, salary, AVG(salary) OVER() "average salary" FROM empl;
We have combobox column in datagrid. I want to access combobox in CellEnter event of datagrid, based on colindex and rowindex I can get cell but how can I access combobox in that particular cell in...
Hey everyone,
I am looking for a seasoned programmer who can be part of a team of programmers to build up the next social network. I can't give in-depth details but the idea involves streaming...
Hey everyone,
I am looking for a seasoned programmer who can be part of a team of programmers to build up the next social network. I can't give in-depth details but the idea involves streaming...
Try This
Private Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" _
(ByVal lpszName As String, ByVal hModule As Long, _
ByVal dwFlags As Long) As Long
Dim RetVal...
#include
#include
#include
using namespace std;
struct t_alunno
{
string nome;
string codice;
int eta;
};
t_alunno alunno;
t_alunno buffer;
FILE * fp;
int nrecord;
int i;
bool...
Well I don't know how the matrix white is generated but I have a code for you. I took the example of a 6x6 matrix with two blocks and it works fine. Here's the code, but in your case, you should...
Hey, I have a 2048x2048 matrix with values of either 0 or 1 which is called "white". I need to find the total number of 3x3 blocks in the matrix where each data point has a value of 1, ie,
1 1...
guys, we use like a 2-d array very often.
But what exactly is the use of a 2-d array ?
Now when i look at it, i feel everything can be done using a 1-d array and incrementing the pointer...
I fixed the exceptions by adding a Pause class using the wait() method, but the dialog boxes and console still ask the user for input twice. How do I fix that?
class Pause
{
static void...
Yes, but the value you must to generate the exponential should be 1/m instead of m. The population mean of an exponential distribution with parameter m is 1/m. In the matlab exprnd(mu,...) function,...
You need to make use of WebRequest and WebResponse objects to call the below http API's.
http://www.smsachariya.com/api.php
----------------------
If you need further assistance you may chat...
char a[] = "hello world";
you can that because the compiler knows how much space to allocate for the string "hello world."
char a[];
a = "hello world";
C won't allow aggregate assignment;...
I don't think bool is a valid type in TC; if you're saving your source as .c, then you might try a typedef statement.
bool may be valid in c++ though... I can't recall. to check, try saving your...
I can write char a[] = "hello world"; , but i can not write
char a[];
a = "hello world";
why so?