What is the Difference between Class and Struct?
Answers were Sorted based on User's Feedback
Answer / manju
The only difference between class and struct is that
in class all members are private by default whereas in
struct the members are by default public.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / ashish srivastava
by default
struct elements are public
while
class elements are private
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / satvir kaur
STRUCTURE CLASS
1.structure by default is 1. class by default is private
public.
2.structure does not 2.class provide data hiding.
provide data hiding.
3.A structure would be the 3.class would be the collection
collection of related data. of data & code which handels
data.
CAN U TELL ME MORE DIFFERENCE BETWEEN LIKE THIS PLZ TELL ME
AS EARLY AS POSSIBLE I AM WAITING
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / wfwre
Class elements are accessed using the provided methods.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / vishnupriya
1.the variables of struct r jus varialbles inly,whereas it
it objects for class...
2. pointers can be used in structure only for same return
types,but in classes it can be uses for diff classes
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / purna
answer 3 is wrong.
answer 4 is absolutely corret.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sureshreddy
the diff b/w structure and class is class by deafualt
private, where as structure by default public.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / talib hassan
1.Structure cannot provide the re usability but class provide the re usability of code.
2. All the members of structure are public but a class provide the several types of accessing methods.
3. structure cannot support polymorphism concept but class provide polymorphism.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / revathy
no functions in structures
member functions are available in class
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / santhosh.r
Structs allocates continues memory
where as class does not
structs and functions are the basic idea behind class
| Is This Answer Correct ? | 0 Yes | 1 No |
Explain 'far' and 'near' pointers in c.
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
A set of N billiard balls are set on a one-dimensional table. The table is 1 meter long, set north-south with two pockets at either side. Each ball has zero width and there is no friction so it is moving with a fixed velocity of either northward or southward and bounces back in a perfect elastic collision from other balls it encounter on its way (or drop into one of the pockets). Your job is to keep track of the balls movements. Task Please write a program that gets the initial place, speed and direction of all the balls and gives the position of a specific ball after t seconds. Input The first line contains the number of scenarios. Each one of the other lines in the input contains a scenario: The first number, N, is the number of balls; followed by N pairs of numbers: the distance in centimeters from the south end of the table and the speed (positive speed meaning it moves northward); the last two numbers are the number i of the target ball you should track and the time T in seconds. Output The output is a single number for each line which is the place (distance in centimeters from the south end of the table) of the tracked ball after T seconds. Note: There is no new line character at the end of the result. Sample Input 5 1 50 1 1 1000 1 50 1 1 6 1 60 -2 1 6 2 10 1 95 -1 2 30 2 10 1 95 -1 2 60 Sample Output 100 56 48 65 70
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
what do you mean by defining a variable in our c code?
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,
c program to compute AREA under integral
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
When should a type cast not be used?
how to write a c program to print list of fruits in alpabetical order?