Click here to Skip to main content
15,867,308 members

Ajay Vijayvargiya - Professional Profile



Summary

    Blog RSS
56,440
Author
1,445
Authority
600
Debator
1,297
Editor
18
Enquirer
432
Organiser
2,959
Participant
Started programming with GwBasic back in 1996 (Those lovely days!). Found the hidden talent!

Touched COBOL and Quick Basic for a while.

Finally learned C and C++ entirely on my own, and fell in love with C++, still in love! Began with Turbo C 2.0/3.0, then to VC6 for 4 years! Finally on VC2008/2010.

I enjoy programming, mostly the system programming, but the UI is always on top of MFC! Quite experienced on other environments and platforms, but I prefer Visual C++. Zeal to learn, and to share!

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralArticle Suggestions Pin
Ajay Vijayvargiya5-Jan-11 16:26
Ajay Vijayvargiya5-Jan-11 16:26 
GeneralMessage Closed Pin
7-Jan-11 6:52
professionalthatraja7-Jan-11 6:52 
GeneralRe: Article Suggestions Pin
Brij9-Jan-11 6:02
mentorBrij9-Jan-11 6:02 
GeneralRe: Article Suggestions Pin
ThatsAlok1-Oct-12 0:30
ThatsAlok1-Oct-12 0:30 
GeneralRe: Article Suggestions Pin
SubiSuresh3-Dec-12 23:26
SubiSuresh3-Dec-12 23:26 
GeneralRe: Article Suggestions Pin
SubiSuresh3-Dec-12 23:32
SubiSuresh3-Dec-12 23:32 
GeneralRe: Article Suggestions Pin
Ajay Vijayvargiya4-Dec-12 5:53
Ajay Vijayvargiya4-Dec-12 5:53 
You did read or understood it wrong!

For T max(T t1, T t2), the template type argument is just one - T.
If you call it like:
C++
max(10,20.0);

You will get a compiler error for ambiguity. So, you can explicitly specify the type:
C++
max<double>(10,20.0);
. If you specify <int> as type, you will get warning.
Two things:
* Please read, understand, code, experiment very well before rushing to ask question. There is nothing wrong in asking question - but you will learn MORE if you attempt to get it yourself!
* Please do reply/comment on the Article page itself, and not on profile page (for any author). This will help fellow readers to get answers.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.