Recent Announcements
-
Convert a Floating-point value to an Integer in C
Convert float value to an int in C Programing.we can convert very easily,Concept:For Converting floating point value, add 0.5 and convert to integer we can get ...
Posted Dec 3, 2010 2:26 AM by thiyagaraaj Mr -
Pointer Representation & Pointer Example Programs Pointer is a programming language data type whose value refers directly to (or "points to") another value stored elsewhere in the computer memory using its address.Accessing The Address:& - Locate ...
Posted Apr 5, 2010 8:00 AM by thiyagaraaj Mr -
Use of getch(),getche() and getchar() in C
IntroductionMost
of the program is ending with getch(),and so we think that getch() is
used to display the output...but it is wrong.It is used to get ...
Posted Aug 25, 2011 1:19 PM by thiyagaraaj Mr -
The Use of * and & in C/C++
IntroductionC++ is a superset of C. Almost all valid C programs are valid C++ programs. It is thus possible to write a C++ program which uses nothing in C ...
Posted Apr 5, 2010 8:01 AM by thiyagaraaj Mr -
2+3 and 5 are not equal In C
2+3 and 5 are not equal In C what is the output of the program? Example Program: #define Square( X ) ( X * X ) void main( ) { int value1,value2; value1 = Square ...
Posted Apr 5, 2010 8:02 AM by thiyagaraaj Mr
Showing posts 1 - 5 of 7.
View more »
Recent Posts For C Aptitude
-
C Aptitue Question : Macro
C Aptitue Question : MacroQuestionWhat is the output of the program?#defineABC 20#define XYZ 10#define XXX ABC - XYZvoid main(){ int a; a = XXX * 10; printf("%d ...
Posted Jan 20, 2011 7:45 AM by thiyagaraaj Mr
Showing posts 1 - 1 of 1.
View more »