Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Max
Would you be offended if I came up and said:?
Wuddup bubblebutt
in a humorous way
5 AnswersJokes & Riddles8 years agoRate ashton kutcher's current hairstyle/facial hair?
sexy?
to jesus?
to much?
/discuss
4 AnswersHair10 years agoWomen Poll: Thoughts on ashton kutcher long hairstyle on Two and a Half Men?
I have a similar hairstyle but more shorter
2 AnswersSingles & Dating10 years agoC++: How do I fix my complex multi/division formulas?
complex operator *(struct complex z1, struct complex z2) //Multi operation
{
complex z3;
z3._Real=
((z1._Real*z2._Real) - (z1._Imag*z2._Imag));
z3._Imag=
((z1._Real*z2._Imag) + (z1._Imag*z2._Real));
return(z3);
}
complex operator /(struct complex z1, struct complex z2) //Division operation
{
complex z3;
float temp;
temp=
((z2._Real*z2._Real) + (z2._Imag*z2._Imag));
z3._Real=
((z1._Real*z1._Real) + (z1._Imag*z1._Imag))/temp;
z3._Imag=
((z1._Real*z2._Imag) + (z1._Imag*z2._Real))/temp;
return(z3);
}
1 AnswerProgramming & Design10 years agoHow do I int a struct thats inside a union?
typedef union Data
{
char c;
int x, arr[8];
float fl;
typedef struct dbl
{
unsigned int a : 1;
unsigned int b : 8;
unsigned int c : 23;
};
}data;
I can get the char by doing data_arr[index].c
but what do i type to get the struct values?
1 AnswerProgramming & Design10 years agoTrying to string copy with: char *StrCopy(char *pDest, char *pSrc);?
Whats wrong with my code atm?
#include <iostream>
using namespace std;
char *StrCopy(char *pDest, char *pSrc);
{
while (*pSrc)
*pDest++ = *pSrc++;
}
int main(int argc, char* argv[])
{
char str1[30], str2[30];
cout << "Input first string: ";
cin >> str1;
cin.ignore();
cout << "Input second string: ";
cin >> str2;
cin.ignore();
cout << "Copied string is: ";
cout << StrCopy(str1, str2);
cin.get();
return 0;
}
1 AnswerProgramming & Design10 years agoHow do I copy a string without using the string library in C++?
Using this code:
char *StrCopy( char *pDest, char *pSrc);
3 AnswersProgramming & Design10 years agoHow do I find the length of a string w/o using the string library?
using this code:
int StrLength( char* )
3 AnswersProgramming & Design10 years agoWhat exactly is this C++ question asking for?
Need to make a code that opens a file stream object called "fin" and attach it to the second parameter of the command-line parameter list
1 AnswerProgramming & Design10 years agoHDTV to PC connection, trying to achieve lifelike HD?
Right now my computer is setup like this:
GTX 570 -> Mini HDMI/HDMI adapter -> HDMI cable -> HDTV
But the video playback wont do true lifelike HD content unless I do 1920x1080 @ 23Hz but that makes the computer stutter outside of video plackback
The TV is an LG 47" HDTV LCD-LED, native 1680x1050
SOme comments I've read have said the hdmi isnt being read properly
So, which of these setups should I try?
PC -> DVI/HDMI adaptor -> HDMI cable -> HDTV
PC -> DVI -> 15 DSUB RGB PC input -> HDTV
PC -> DVI/HDMI cable -> HDTV
2 AnswersTVs10 years agoTo people who have an HDTV connected to their PC, can you check something for me?
I ordered a 47" LG and I'm just going to stream via HDMI out of my GTX 570, I have access to blu-ray videos but can you test this site and tell me if its still watchable for the lo-quality vids from novamov and videobb
http://www.iwatchbigbangtheory.eu/
I usually just watch them on my 22" monitor looks fine but iunno how it'll compare at a screen twice its size, Thanks.
1 AnswerPC10 years agoDo people with hearing aids leave them on when having sex?
the hearing impaired
2 AnswersSingles & Dating10 years agoDoes the Asus Eee Pad Transformer come with a tablet pen?
or am I going to have to buy a separate wacom pen?
2 AnswersLaptops & Notebooks10 years agoWhere can I find this L-Shaped desk?
or similar, I dont need anything special, just an L with pull-out keyboard, non-glass. Upgrading from a corner desk so I can dual screen
3 AnswersDecorating & Remodeling10 years agoWhere can I find this L-Shaped desk?
http://imageshack.us/photo/my-images/171/3ne3p13l0...
or similar, I dont need anything special, just an L with pull-out keyboard, non-glass. Upgrading from a corner desk so I can dual screen
5 AnswersDecorating & Remodeling10 years agoSmall Wind Turbine: 470 and 1K ohm loads have similar voltage across them, why?
A small constructed wind turbine, at low wind speeds (3.7-4.0 ,/sec) generate similar voltage across two different loads, 470 (370mv) and 1k (340mv)
why?
1 AnswerEngineering1 decade agoWhy do different light sources affect the voltage output of a PV panel?
When they all have the same luminance?
300 W Halogen
60 W Incandescent
13 W CFl
9 W LED
1 AnswerEngineering1 decade agofget and fprintf not right? (C Program)?
include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
typedef struct
{
char studentName[50];
int studentId;
} database;
int main(int argc, char *argv[])
{
database school;
FILE *file_ptr;
char text[50];
int begin,temp;
while(1)
{
printf("\nInput Data? (Yes = 1) : ");
scanf("%d", &begin);
if(begin != 1)
{
break;
}
printf("\nEnter Student Name: ");
fgets(school.studentName, 50, stdin);
printf("\nEnter Student ID: ");
scanf("%d", &school.studentId);
printf("\nAdd to school.csv? (y/n): ");
getchar();
scanf("%c", &temp);
if(temp == 'y' || temp == 'Y')
{
file_ptr = fopen("school.csv" , "a");
if( file_ptr != NULL)
{
printf("File school.csv opened\n");
}
//printf("\nFile school.csv opened\n");
fprintf(file_ptr, "%[^ ]s, %d\n", school.studentName , school.studentId);
fclose(file_ptr);
printf("File Saved.\n");
}
else(temp == 'n' || temp == 'N');
{
printf("\nFile not Saved.\n");
}
}
system("PAUSE");
return 1;
}
3 AnswersProgramming & Design1 decade ago(C Program) How do I get full string?
how do i fix this line
printf("\nEnter Student Name: ");
scanf("%s", &school.studentName);
to get something like "Bobby Bob" with the space
3 AnswersProgramming & Design1 decade ago