C program to convert given number of any base to any base.
Any base to any base conversion in c. #include<stdio.h> void convert(int d, i…
What do you mean by an EVIL number? An Evil number is a number that has an even number of 1's in its binary expansion. An Evil number is an …
Read moreC PROGRAM #include<stdio.h> #define SIZE 50 int main() { char input[SIZE]; char *p,c; int flag = 0; printf("\nEnter any…
Read moreADD USING COMMAND LINE ARGUMENTS. #include<stdio.h> #include<stdlib.h> int main(int argc,char *argv[]) { int i, sum = 0; if (arg…
Read moreDifferent type of values of Access Mode in opening / creating file in File Handling in C Programming. Which are as follows: 1)"w": …
Read moreThe C program written below is to execute all stack operation such as PUSH,POP and PEEK …
Read moreC Program for Printing Pascal Triangle. #include<stdio.h> int fact(int m) { long f=1,k; for(k=m;k>0;k--) { f = f * k; …
Read moreAny base to any base conversion in c. #include<stdio.h> void convert(int d, i…
Social Plugin