Write a C program to simulate a simple calculator to perform arithmetic operations like a and division only on integers. Error message should be reported if any attempt... read more ?
Print semicolon without using semicolon in java
Posted by: Instanceofjava Posted date: June 10, 2017 / comment : 0 java programming interview questions
Write a program to print a semicolon without using a semicolon anywhere in the code in java. Write a program to print"hello world"without using semicolon anywhere in the... read more ?
C programming power function example program
Posted by: Instanceofjava Posted date: May 20, 2017 / comment : 1 C language interview programs , c programming examples for beginners
C program to find power of a number using function. Write a c program to find power of a number using function recursion (adsbygoogle = window.adsbygoogle || []).push({});... read more ?
C program to display characters from a to z using loop
Posted by: Instanceofjava Posted date: May 20, 2017 / comment : 0 C language interview programs , c programming examples for beginners
C program to display characters from a to z using loop. We can print all alphabets starting from A to Z using for loop. Take a char variable... read more ?
Convert string to integer c programming
Posted by: Instanceofjava Posted date: May 20, 2017 / comment : 0 C language interview programs , c programming examples for beginners
We can convert string to integer in c Programming by using atoi() function. atoi() is a library function from C. int atoi(const char *str) ; Now we will... read more ?
Bubble sort algorithm in c with explanation
Posted by: Instanceofjava Posted date: May 20, 2017 / comment : 0 C language interview programs , c programming examples for beginners
Bubble sort is one of the example of sorting algorithm. Bubble sort in data structure Bubble sort is a procedure of sorting elements in ascending or descending order.... read more ?
C program to find ASCII value of a string or character
Posted by: Instanceofjava Posted date: May 20, 2017 / comment : 0 C language interview programs , c programming examples for beginners , c programming language
Convert string to ascii c programming. C program to find ascii value of a string or character. C program to print ascii value of alphabets. Now we will... read more ?