Which programming language should I learn first?
No Answer is Posted For this Question
Be the First to Post Answer
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
What does extern mean in a function declaration in c++?
Discuss the effects occur, after an exception thrown by a member function is unspecified by an exception specification?
Is std :: string immutable?
What happens when the extern "c" char func (char*,waste) executes?
What is the difference between strcpy() and strncpy()?
How do you flush a buffer in c++?
Difference between an inspector and a mutator
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
Are vectors passed by reference c++?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;