How many lines of code you have written for a single program?
Answers were Sorted based on User's Feedback
Answer / ilakya.g
Atleast there should be 4 lines.it must consists of main
with the parenthesis and atleast a statement in it.
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / ashish. j
It depends on what kind of project you are working on.
Specially in a OOD, you have classes and objects. Ask the
interviewer if he wanted the number of lines in the whole
project or just one of the files. Every file can vary from
just 4 lines as stated above by Ilakya.g or it can have
more than 50 lines as needed. I haven't worked in very big
projects yet. But, the small projects I have worked on had
at least 30 lines per class and about 5 classes. That
multiplies to be about 150 lines for the project. Again,
keep in mind, it was a very tiny project. The number of
lines can vastly change if the project is bigger.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / vijay kumar
from c program structure there should be atleast three lines
example like that
main()
{
}
there are no requard of header files
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / george
If you want to make a simple Hello World program in a
Comand propt(Console) window. Here is its shortest's code:
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world" << endl;
cin.get();
return 0;
}
Check out my Youtube channel for 2 tutorials and see how
long can very very simple apps be!
http://www.youtube.com/user/GGames2009
| Is This Answer Correct ? | 1 Yes | 1 No |
Explain what is polymorphism in c++?
what is Member Functions in Classes?
What are the advantages of using const reference arguments in a function?
Explain the concept of dynamic allocation of memory?
What are the differences between a struct and a class in C++?
Does improper inheritance have a potential to wreck a project?
What is the difference between an external iterator and an internal iterator?
Can you explain the term "resource acquisition is initialization?"
What does it mean to declare a member function as virtual?
i have given a project to create examination seating plan system in c++. so can anyone send me the answer of this question quickly??????
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.
What is class in c++ with example?