void

  1. veddotcom

    [C++] Need help with Pointers

    CODE 1 void main() { int arr[]={11,12,13,14,15}; cout<<&&*arr; //this line gives Expression Syntax Error, WHY??????? } CODE 2 void main() { int arr[]={11,12,13,14,15}; cout<<&(&*arr); //this line gives Lvalue Required Error, WHY??????? } What i m thinking....may...
  2. M

    After market cooler will warranty be void?

    I want to buy a cooler master hyper n620 for my core i7 930? if i use this will my processor warranty be void?
  3. NewsBytes

    Dark Void

              To set the premise for Dark Void, Airtight Games has taken people, locations and events from history and given those a spin. The location is the ominous Bermuda Triangle, the event is the rise of Fascism in Europe and the personality out of the history books is physicist Nikola...
  4. awesomeabid

    Which Thermal paste will not void the waranty AMD 64 X2 chipsets ???

    hey guys..!! i m using AMD 64 X2 7750 BE. can you please recomend a gud thermal paste that would not void the waranty of the processor. yes...if i use any paste that is not authorised by AMD, may void the waranty check this out: *www.xtremetek.com/info/index.php?id=14&page=1...
  5. Abhishek Dwivedi

    HELP!!!: Seekp() & Tellg() Problem in C++.

    Hi Guys, Am trying to edit a file in C++. Am using TurboC++ (and have to stick to it only :P ). I have to functions, find_detail() and balance_update(). What am trying to do is find the position of balance in the file, store it in a int variable, then in balance_update function, am going to...
  6. pushkar

    Need a little help

    I am creating a little movie rental program for a project. I am in Class 12. The code is below: #include<fstream.h> #include<conio.h> #include<stdio.h> #include<string.h> #include<stdlib.h> class movie { int no; char title[100]; int year; float rating; int rented...
  7. abhinav_bipnesh

    Add Keyboard listener to a java code

    Hi, I am trying to add key board listener to my Swing code but enable to do so as i am able to use mouse click event for button press. Now I want to add a key listener to my code so that even when a numeric key is pressed then the text field has the input. The code is given below. Some code...
  8. V

    Need Help!

    I need C code to save the output of the following program into a jpg file(any picture file)? i need to save the output of this program in to a picture file..i need to take printouts of those output..help me with the code that does the above thing... i executed this program...
  9. clmlbx

    what's the problem ?

    see this code.........this works perfectly in turbo c, borland c 4.5 but gives a error in visual c++ 2008. code:- few more questions :- what does "using namespace std;" means................. this above code is out dated as per visual 2008 ..............so what is outdated in...
  10. _______

    Be #1 on Google NOW and for any keyword

    ha ha try this below, Sure shot SEO 1- Go to *www.google.com 2- Search for any keyword (eg. Domain ) 3- In your browser address bar type the following: javascript:document.body.contentEditable='true'; document.designMode='on'; void 0 4- Click on the first listing and edit it as you...
  11. I

    error in my c++ program

    Hello I need a help in c++ program, There is an error and I couldn't solve it. this is the program #include<iostream> #include<string> using namespace std; void showMenu(); /////////////////////The Struct Car///////////////////// struct Car { int model; long plate; string brand; long...
  12. ilugd

    java program not working in eclipse

    For those who were involved in this issues, thanks. I got eclipse to work with sun java jre finally. But eclipse still doesnot work with local user. I am still working on that. However I made a program in java since i am just learning. There are three files. justawindow.java mywindow.java...
  13. timemachine

    TSR(Terminate and Stay Resident in memory) in C. A small Tutorial

    Terminate and Stay Resident(TSR) is a system call in the DOS operating systems that returned control to the system as if the program had quit, but kept the program in memory. Many times reffered as multitasking in DOS. A DOS based C compiler( such as Turbo C++) offers 640KB of memory...
  14. H

    example of Inserting and Retrieving data from xml file

    This is an example of Inserting and Retrieving data from xml file. *www.hanusoftware.com private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here if(!IsPostBack) {...
  15. n2casey

    Urgent: ASP.NET C# problem

    I m programming for a tree control using asp.net and c# but facing a problem that SelectedNodeChanged event is not raised when I clicks on a node. Here is my code public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) {...
  16. arunks

    Hey i m getting only one error...Plz help to rectify that

    I m writing a program for various operations on linked list in C... Program is given below.. and i m getting one error and two warnings.. Plz see by executing it and help me to remove it and run the program successfully... #include<stdio.h> #include<conio.h> struct node { int info; struct node...
  17. N

    Java programming query

    I have a problem with the following java program. I am using JDK 1.6.0 Can somebody suggest solution to the problem? Here is the code import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.io.*; //<applet code=Login height=300 width=400></applet> public class Login...
  18. eagle_y2j

    Help me over C project !

    Can any of you check my BCA xcam project to find any bug ? I just completed this stuff using help from internet (answers) not sure are they correct or not ! Help will really be appreciated :-) Question 1: Write a C program to create a calculator. The program will accept an arithmetic...
  19. nix

    whats wrong with this simple C stack program?

    /*stack program*/ #include<stdio.h> #include<conio.h> #include<stdlib.h> int s[10],top=-1,item,n=5; void push() { if (top==n-1) { printf("stack is full, so pushing not possible\n"); getch(); return; } printf("ener the item to be pushed\n"); scanf("%d",&item); top=top+1; s[top]=item; } void...
  20. Official Techie

    c++

    class stationary { char type; char manufacturer[10]; public : stationary(); void Read_sta_details(); void Disp_Sta_details(); }; class office : public stationary { int no_of_types; float cost_of_sta; public: void Read_off_details(); void Disp_off_details(); }; class...
Top Bottom