hi,
i have the following program.
/*Hangman.c*/
#include <string.h>/*needed for strlen() and strncpy()*/
#include <ctype.h>
#include <conio.h> /*neede for getch()*/
#include <stdio.h>
#define MAXLEN 20
#define MAX 10
#define YES 1
#define NO 0
#define STARS '********************'
void main()...
[b]hi,
i have the following conditional staements and i want to know what the value of x will be after they are compiled in a program, what is the best way to test them.
i used the debugger in c++
the results i got with the debugger were
a,x=0
b,x=0
c,x=1
d,x=0
e,x=0
are these correct as i am...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.