Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what will be maximum number of comparisons when number of elements are given?

0 Answers  


Why malloc is faster than calloc?

0 Answers  


what is the difference between embedded c and turbo c ?

1 Answers  


What is 02d in c?

0 Answers  


10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

5 Answers   Accenture,






Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.

5 Answers  


What is signed and unsigned?

0 Answers  


how to write a program which adds two numbers without using semicolon in c

2 Answers  


what is difference between ++(*p) and (*p)++

17 Answers   Accenture, HCL, IBM,


#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }

9 Answers   Burning Glass,


YBJBU6

1 Answers  


Why preprocessor should come before source code?

2 Answers  


Categories