C Aptitude: Endianness, Pointer Arithmetic

C Aptitude 31In this episode we’ll learn learn more about Endianness, Pointer Arithmetic.C program is one of most popular programming language which is used for core level of coding across the board. C program is used for operating systems, embedded systems, system engineering, word processors,hard ware drivers, etc. In this site, we have discussed various type …

C Program To Swap Two Variables

C Program To Swap Two Variables without using the third variable. This type of C programs are asked in various Interviews.There are various methods to achieve this one. For example, a=a+b;b=a-b;a=a-b;Here we use the XOR(^) operator to Swap Two Variables without using the third variable. Read more about C Programming Language . /************************************************************ You can …

Print “Hello World” Without Using Semicolon

How to Write a “Hello World” C program without using semicolon?Asked in various interviews…Read more about C Programming Language . Read more Similar C ProgramsC Interview QuestionsNumber Theory  C Strings You can easily select the code by double clicking on the code area above. To get regular updates on new C programs, you can Follow …