How to swap two numbers by using function
How to swap two numbers by using function int main (void) { int a = 10; int b = 20; printf("current value of a: %d\n", a)...
Read more »How to swap two numbers by using function int main (void) { int a = 10; int b = 20; printf("current value of a: %d\n", a)...
Read more »Program for replacing space with %20 #include < stdio.h > #include < string.h > int main() { char str[100]; printf(...
Read more »C Program for console file opens #include < stdio.h > #include < stdlib.h > int main() { FILE *fptr; char filename[100],...
Read more »What is the life of an IT employee after being fired from a company? They get real. and realize that they weren't hired because ...
Read more »Divide and Conquer principle in C Programming It was a strategy used by British to rule India. Lol........... Joke apart, Now coming to t...
Read more »Read also The real reason why IT companies delay the joining date of fresh graduates 1. TATA Consultancy Services Limited Fou...
Read more »First of all, you need to understand that the difficulty level of aptitude test and interviews or you can say the placement process is ...
Read more »Swap two numbers by using function in C Programming int main (void) { int a = 10; int b = 20; printf("current value of a: %d...
Read more »How to shutdown pc by c code ?(win 7/8/10/xp) Shortcuts: #include < stdio.h > #include < stdlib.h > int main() { syste...
Read more »Print even number 1 to 100 Using for loop LOGIC: for( i=1;i < =100;i++) { if(i%2==0 ) { Printf("even no are %d",i); ...
Read more »How to use switch case Let's make it simpler. You use switch to say what variable you want to switch on and case to define what ...
Read more »The reasons for delay are The slow market As you know that previous year was very bad for service based companies and worse for Info...
Read more »1.How to change font style and font size in c program? Answer: To turn bold on and off you need to call the library term.h if you are o...
Read more »A positive integer is called an Armstrong number of order n if abcd... = an + bn + cn + dn + ... In case of an Armstrong number of 3 dig...
Read more »In this program, two user-defined functions checkPrimeNumber() and checkArmstrongNumber() are created. The checkPrimeNumber() returns 1 ...
Read more »#include < stdio.h > int main() { int number; // printf() dislpays the formatted output printf("Enter an int...
Read more »No. of Distinct Elements in a sorted array Write a program to find the number of distinct elements in a sorted array. Input Format: Inp...
Read more »GetMaxSum Consider a triangle of numbers in which a number appears in the first line, two numbers appear in the second line, three...
Read more »Seat Allocation I The seats are arranged in the lab in a rectangular fashion with m rows and n columns. The students are seated in the...
Read more »Write a program that calculates and gives the monthly salary details for an employee, including all the amounts deducted from an emp...
Read more »