void

  1. A

    good c fundu book and simple programs

    hi guys 1>how to write a c program so that the whole program shud print in the output and then the reqiured statements without using printf(). 2>how to swap the values of two integer without using temporary variables as well as any arithmetic operations 3>i wrote a program as below void...
  2. M

    LInk List Problem , Immediate soln needed

    Hi guys , plz see this code for me The problem lies in the Inserting of node portion. #include<iostream.h> #include<conio.h> #include<stdlib.h> #include<stdio.h> struct linklist { int data; linklist *next; }; typedef struct linklist node; void create(node...
  3. Maverick340

    Switch(not_working)

    #include<iostream.h> void main() { int d; char a; cout<<"Please enter your Date of Birth In the following Format :"; cout<<"DD\n" ; cin>>d; switch(d) { case (1): a="One"; break; case (2) :a="Two"; break; case (3) :a="Three"; break; default:a="Null 0000"; } cout<<a; }...
  4. S

    C++ Program Q.

    Can anyone tell me the program for DELETION FROM THE END IN LINKED LIST DYNAMICALLY ???? I need it urgently, since day after tomorrow is my board practical. Here's the program for DELETION FROM THE BEGINING, but i m not able to modify it for DELETION from THE END
  5. G

    can you tell me what mistake i made?

    hi, i was writing a c program for my class assignment, and i got stuck. i paste it below. it appears to me that the program structure is ok, but when i run it, it does'nt give any output. i have also tried by taking the last 'printf' statement out of the for loop, but then the out put is not...
Top Bottom