What is the 'named constructor idiom'?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by int main ()?
What does void main return?
Explain what is the benefit of using const for declaring constants?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What is the difference between if else and switchstatement
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
Why is c faster?
Why is c still so popular?
Name the language in which the compiler of "c" in written?
What is the scope of static variable in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }