-
Began Watching Creating color in a sequence
i want to display all possible colors on a form (i am using timer with 500 interval). what logic should be there to display all possible color (i want to … -
Created Operator
hello everybody, i started learning vb.net around 3-4 days ago. And now i playing with operators . There i have one doubt : is it possible to treat string value … -
Began Watching Operator
hello everybody, i started learning vb.net around 3-4 days ago. And now i playing with operators . There i have one doubt : is it possible to treat string value … -
Replied To a Post in Add array Problem
> In your function you need to declare a local variable to hold the sum of the array elements and then return that. You do not want to store the … -
Began Watching Add array Problem
When I try to add the two array together it show me 0? ` #include <iostream> using namespace std; int add_arrays(int a[], int b[], int n); int main () { … -
Replied To a Post in Add array Problem
> n = a[i] + b[i]; replace it with this : n+=a[i]+b[i] -
Began Watching New Homepage
Nearly 5 am and I lost track of time and spent alllll night coding up our new homepage, which features our Activity Stream. Secondly, there's now a 'New' tab within … -
Replied To a Post in New Homepage
I think that the earlier design was much better. Anyways, this is also good design but i still say that the earlier was very much better. That's my personal opinion. -
Began Watching create a program that will display the factors of a given number
Can someone help me with the codes in C language.this is the problem: create a program that will display the factors of a given number.the input must read from a … -
Replied To a Post in create a program that will display the factors of a given number
@john we are not here to write code for you. it is very necessary to show us your efforts in order to get assistance. so , post your effors(your code) … -
Began Watching Arrays in C++
##Why Use Arrays?## Let's begin by considering why arrays might be needed. What is the problem that this feature solves? How does it make your life as a programmer easier? … -
Replied To a Post in Arrays in C++
thanks for such a nice tutorial. really very interesting . looking forward to your pointers tutorial. thanks. -
Began Watching bitwise operator
// onlyme.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> #include<stdlib.h> using namespace std; int inputa; int inputb; int Andgate(void); int orgate(void); int notgate(void); … -
Replied To a Post in bitwise operator
this thread belongs to function in c++ so i am not sure why you give such a title(bitwise operator) to the thread. however , right now , i am not … -
Began Watching help me this 2 ><
How can i possibly use array to create a password program? #include <iostream> using namespace std; main() { int password[5] = {1,2,3,4,5}; int pass[5]; cout << "enter pass: "; cin … -
Replied To a Post in help me this 2 ><
first off, a few things : are you really using number as password ? if yes then consider following things :- An Array `Arr[5]` will consist 5 values from 0 …
The End.