What are the advantage of using register variables?
No Answer is Posted For this Question
Be the First to Post Answer
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
Why is main function important?
Am pass the 10000 records to target in target I will take commit interval 15000 when I was stop the work flow what will happened
Why cout is used in c++?
How to write a program such that it will delete itself after exectution?
What are different types of loops in c++?
Why do we need constructors in c++?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
Can we change the basic meaning of an operator in c++?
Define token in c++.
What can I safely assume about the initial values of variables which are not explicitly initialized?