Recent Posts From All Categories

Showing posts with label C Program. Show all posts
Showing posts with label C Program. Show all posts

Swap Values Without Using 3rd Variables : C Programming

For the above program, code goes like this : /* Swapping values without using 3rd Variable */ #include<stdio.h> main() {     int ...
Read More

Swapping Values using 3rd Variable : C Programming

Code goes like this : /* Swapping values without using 3rd Variable */ #include<stdio.h> main() {     int a,b;     printf(...
Read More