Test your C++ programming and computer science knowledge against our quizzesand see how much you've learned.
General C++ Programming and Computer Science Quizzes
- C, C++ andComputer Science MegaQuiz Test your general C, C++ and computer scienceknowledge!
Language Feature Quizzes
Snake and Ladder Game Project. This is a sample C snake and ladder Game Project for class 11 CBSE board. Select this program and save as.cpp file and compile it on Turbo C. C Algorithms Code Examples This is a very simple quiz with Ten questions in it and also is very easy to use. This is mainly made for extreme begginers in C.
These quizzes are based on the material covered in our C and C++ tutorials.C++ Quizzes
Quiz Game Project In Dev C Download
C Quizzes
Taken all the tests? Test you skills against our programming challenges.
Quiz Game Project In Dev C Online
Advertising | Privacy policy |Copyright © 2019 Cprogramming.com | Contact | About
Quiz Game Project In Dev C Pdf
Quiz Game Project In Dev C 5
Line 4: You need
Lines 10-12: These lines generate truncation warnings because the right sides are by default double. Use
Lines 16,18,146,148: Illegal escape sequence. space is not a valid escape sequence.
Line 31: correct is an uninitialized variable (garbage).
Line 32: If you change lines 10-12 to double, multiplier should be a double also.
Line 47: You don't check that the open of the output file succeeded.
Line 67: If the difficulty is invalid, your program will go into an infinite loop.
Line 102: You don't check that the read succeeded. What if the number of questions entered by the user is greater than the number of entries in the file?
Line 109: You're comparing an int and a string. Did you mean questions?
Line 109: Needs a ; to terminate the do/while.
Line 126: Do not put a space between ! and =.
Line 131:
Line 139: You're missing an opening {
PLEASE ALWAYS USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post.
http://www.cplusplus.com/articles/jEywvCM9/
Hint: You can edit your post, highlight your code and press the <> formatting button.
#include <string>
Lines 10-12: These lines generate truncation warnings because the right sides are by default double. Use
constdouble
.Lines 16,18,146,148: Illegal escape sequence. space is not a valid escape sequence.
Line 31: correct is an uninitialized variable (garbage).
Line 32: If you change lines 10-12 to double, multiplier should be a double also.
Line 47: You don't check that the open of the output file succeeded.
Line 67: If the difficulty is invalid, your program will go into an infinite loop.
Line 102: You don't check that the read succeeded. What if the number of questions entered by the user is greater than the number of entries in the file?
Line 109: You're comparing an int and a string. Did you mean questions?
Line 109: Needs a ; to terminate the do/while.
Line 126: Do not put a space between ! and =.
Line 131:
ifelse
is not valid. Id you mean if or else?Line 139: You're missing an opening {
PLEASE ALWAYS USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post.
http://www.cplusplus.com/articles/jEywvCM9/
Hint: You can edit your post, highlight your code and press the <> formatting button.