Tagged Questions

2
votes
1answer
143 views

lual_dofile(); wont load script with C++ and Lua

Hello i'm trying to get this code to work extern "C" { #include <lua.h> #include "lualib.h" #include "lauxlib.h" } #include "glew.h" #define GLEW_STATIC #include "SDL/SDL.h" #include ...
0
votes
5answers
124 views

This `do..while` loop isn't working

int sc1,sc2,a=0,b=0; do { printf("Give the scores\n"); scanf("%d %d", &sc1,&sc2); //=============================================== if (sc1 > sc2) a+=1; else if ...
0
votes
4answers
426 views

QT do while loop

I am learning QT these days and I wanted to test do while loop , the actual login works in normally, but in QT the application freezes .. I have defined randnum and guess in the header file ( public ) ...
0
votes
5answers
296 views

Is it possible to have a while loop in c++ that makes the check in the middle of the loop instead of the beginning or end?

I want to have a while loop do something like the following, but is this possible in c++? If so, how does the syntax go? do { //some code while( expression to be evaluated ); // some ...
0
votes
2answers
457 views

Replay tic tac toe game

So I am trying to program a way to replay a tic tac toe game after someone wins, loses, or ties. So basically my attempt to get replay to work, doesnt work. If player 1 won and I type 1 to replay, it ...