Tuesday, July 14, 2009

The C Family!?

This paper is long overdue. The C family. What are they? I'm still pretty clueless. But just like the reporters, they're not just diong this for no reason. They are trying to make it to the Top Contributer List. Just like the Reporters. Rumor has it that the Reporters ARE the C Family. But the only thing is, there are some new thigns. As in, Ann C and the rest of the C family are different. Ann C(Which rumor has it is Anne the Lover or Monstrar) has been threatening other people. As in, threatening to get their account suspended if they do not make another edition to the C Family. They have been pllotting on 'Aunt Lucy C' who will be coming later this evening. In other news, Martin SAYS he's gone, but he's really back. In another account though. The avatar looks the same and he says the same age in his About Me Profile. But he goes by another name. I used to have a link to his profile, but I lost it. But just look out for him.

The C Family!?
Thanks for the Y!A news! The C family in my opinion is just some girl who makes a bunch of different accounts having to do with her family. Eventually she'll probably run out of options.
Reply:ye
Reply:hah actually i did enjoy this.. i can not stand the C family.. so it was very interesting. thanks for the update!
Reply:um...ok i think that my iq just dropped about 10 ponts after reading that.....you are just adding fuel to the fire by posting this. idiot.
Reply:I %26lt;3 the C family!
Reply:i did... cuz im really bored. we should kick these these C idiots out of Y!A like we did to the reporters!











wait wait wait i change my answer. hahahhaa you're probably the C family. and the reporters... or both
Reply:What?!? sheesh....there is life out there, climb out of there and go find it!
Reply:keep making more reports


there are very important


lol i really do love them
Reply:haha loser nerdish , do you have friends ?


C++ Sorting Numbers using procedures?

Write a procedure void sortTwo (int%26amp; n, int%26amp; m) that swaps the values of n and m if n is greater thanm and otherwise leaves n and m unchanged. For example,





int a = 2;


int b = 3;


int c = 4;


int d = 1;





sort(a, b); /* a is still 2, b is still 3 */


sort(c, d); /* c is now 1, d is now 4 */





Also write a procedure sortThree(int%26amp; x, int%26amp; y, int%26amp; z) that swaps its three inputs to arrange them in sorted order that uses sortTwo. For example,





int a = 3;


int b = 4;


int c = 1;





sortThree(a, b, c); /* a is now 1, b is now 3, c is now 4 */

C++ Sorting Numbers using procedures?
well first the methods need to take the int as references. so it'll look something like this.





sort(int %26amp;a, int %26amp;b)


{


if(a %26gt; b)


{


int temp = a;


a = b;


b = temp;


}


}








sort(int %26amp;a, int %26amp;b, int %26amp;c)


{


sort(a,b);


sort(c,b);


sort(a,b);


}

flowering plum

C ,c ++ books related?

iam feeling difficult to read c book in english . if u suggest some good books for c language available in tamil language , i would be greatful.





then there are different topics in c --


ansi c ,data structures in c likewise . how many types or topics involved in these .





also tell me how much we need to read to attend a campus interview for fresh engineers in an IT company,

C ,c ++ books related?
Hi,





I am not sure whether any C language book is available in tamil . But few pointers I would like to give:





1) If you are a Final year Non-compscience Engg graduate, do not worry specifically about interns of C or C++. Most of the companies(MNCs atleast) will not test a fresher from Non-CS background with Language related question.


2) In Campus interviews, Normally they will look for the Communication, Attitude and ofcourse your aggregate marks till the 6th semester.


3) May be you can brush up little bit on Overall computer science topics %26amp; terminologies like:


a. What is Normalisation


b.What are cods rules


c.what is C language best suited for


d.What is pointer in C


e.How will you handle files in C


f. oops concepts like inheritance, multiple inheritance,Friend function,Private / public /protected members( If you understand the basics of oops, nothing more you need to worry about C++ for interview )


g. Few Databases you heard of (ORacle, sybase upto Access) and what level of data they can handle ( Oracle is the Robust one with MS-Access stands last as Ms-Access can't handle more than 2 GB of data-This is what the situation with Access atleast when we used it around the year 2001)


h.1 or 2 points about Win XP or Vista and linux


i.What is SAP and what is it for.





Basically what I am trying to say is , If you do not have any exposure onto computer languages, instead of learning a language full @the last minute, spread out wide ( and gather bits %26amp; pieces of information across multiple computer science related terminologies and latest trends) which can impress the interview panel.





Coming back to your question:


Important topics in C :(atleast in interview perspective)


1) Pointers


2) File handling


3) C Libraries-Basics For Ex.%26lt;stdio.h%26gt; %26lt;math.h%26gt;


4) Functions ( By Value %26amp; Address)





Following link will help you a lot


http://www.fresherscircle.com/index.html





If you have further doubts on this topic, feel free to respond with more specific questions.


All the Best
Reply:deitel books
Reply:I dont exactly remember the names of the writers but I can list some books that were useful to me for my CDAC entrance exam. Unfortunately, they are in English not in Tamil.


1) Let us C (Kanitkar)


2) Let us C++(Kanitkar)


3) Introduction to C, C++ and Data Structures-Robert Lafore


4) C, C++, Data structures-Tata Mc Graw


Let a,b,c denote the three sides of a triangle and A,B,C the corresponding opposite angles. Only..?

one of the expression below has the same value for all triangles. Which one is it?


A) sin A + sin B + sin C;


B) tan A tan B + tan B tan C + tan C tan A;


c) (A + B + C)/(sin A + sin B + sin C);


D) cot A cot B + cot B cot C + cot C cot A;


Kindly explain your answer...

Let a,b,c denote the three sides of a triangle and A,B,C the corresponding opposite angles. Only..?
It's the last one, cot A cot B + cot B cot C + cot C cot A. This follows immediately from setting C = pi - A - B, using the identity cot(pi - x) = - cot x, and then substituting in the formula which gives cot (A + B) as a function of cot A and cot B.


C++.........which on is the better version of c++........?

1.Borland's Turbo C++ Explorer,


2.Microsoft's Visual C++ 2005,


3.Open Watcom C/C++ Compiler


i want to learn c++,please tell me a good website,which version should i have ?

C++.........which on is the better version of c++........?
I would personally recommend GCC's g++ which is free and open source. I don't know much about 1 and 3 but be very careful with VC++ as it can teach you very bad habits and does alot of things in a very nonstandard way. It does have a nice interface though :p


[1] is a version of GCC that will run on windows.
Reply:microsoft visual one is a good one.
Reply:Of those three, Microsoft's Visual C++ 2005 is by far the largest, most dominant, and best supported IDE. There are a few answers here telling you to use open source environments--I suggest you do NOT use the open source ones until you are more comfortable programming. While they have some nice features, the user interfaces often leave a lot to be desired.





One of the arguments against Visual C++ is that it costs money. This is no longer true: Visual C++ 2005 Express Edition is now free of charge. It does leave out a few features, but they're not anything you're likely to miss (MFC support, anyone?). Note that you may want to download and install the "Windows Platform SDK" as well, but that is also free.





One other answer also commented that Visual C++ is non-standard and can teach some bad habits. If you use the .Net mode then this is true (you will be given the option of whether to use .Net when you create new projects). The C++ used for .Net has many custom extensions that only Microsoft uses. When you are using normal C++, however, they have a very good standards compliant compiler (roughly equal to G++ on standards, and with much better optimization).
Reply:i recommend you visual c++, and you can simply go to the microsoft developer center of visual c++ to study, and they recommend you a lot a associated community website for asking questions


search the keyword


microsoft developer center visual c++


the software is downloadable from microsoft official website
Reply:For a begginer





Borland C++ is advisable





and you can easily run and learn





no need of much configurations in it..





All the best
Reply:srry i dont get
Reply:Go with DEV C++. Simple to use IDE, it's free, and for a begginer you can put it on a usb drive and carry it with you.


Help!!! U = {a, b, c, d, e, f, g, h}. A = {a, b, c, d, e}. B = {c, d, e, f}.?U = {a, b, c, d, e, f, g, h}.?

Help!!! U = {a, b, c, d, e, f, g, h}. A = {a, b, c, d, e}. B = {c, d, e, f}.?


U = {a, b, c, d, e, f, g, h}. A = {a, b, c, d, e}. B = {c, d, e, f}.


Which of the following is (A intersect B)C








Pick one:





{a,h,b}


{f,g,h}


{a,b,f}


{a,b,f,g,h}

Help!!! U = {a, b, c, d, e, f, g, h}. A = {a, b, c, d, e}. B = {c, d, e, f}.?U = {a, b, c, d, e, f, g, h}.?
If C is complement (') then the ans is {a,b,f,g,h}
Reply:A intersect B is none of the above. As for U??? and you didn't define C????





But do you learn anything by asking strangers - go to your textbook and look up sets and subsets
Reply:A intersect B = {d,e} since they have those in common


Then ( A intersect B) c = all the elements in U except d and e





={a,b,c,f,g,h}

nil

Simple C/C++ Antispyware?

Hello. I know a fair amount of C and C++ and would like to make (or contribute to an Open Source) antispyware application.





Does anyone know of either;





An open source C or C++ antispyware application I can contribute to?





OR





A C or C++ antispyware codebase which I can then work on?





I have tryed Googling but have found nothing of real interest so far.





Thank you in advance,


From Miki.

Simple C/C++ Antispyware?
I am not sure such a project exists. The only real and credible open source application I am aware of is the ClamAV project. And that is more AV than AS, I am afraid.








Besides, considering the nature of todays parasitic spyware, it is likely that there won't be any 'simple' applications to combat them.





I wish you the best of luck in finding a suitable project to develop your skills.