C program to SWAP the nibbles of a character | SWAP the nibbles of given character
C program to swap the nibble of the given input. Nibble means 4 bits memory area. So we...
C codes / C interview programs / C language / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 19, 2014 · Last modified July 1, 2017
C program to swap the nibble of the given input. Nibble means 4 bits memory area. So we...
basic C programs / C codes / C interview programs / C language / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 18, 2014 · Last modified February 27, 2017
/************ Program ************/#include<stdio.h>main(){ int n,i,cnt=0; printf(“Enter any Number : “); scanf(“%d”,&n); for(i=1;i<=n;i++) { if(n%i == 0) cnt++; }...
basic C programs / C codes / C interview programs / C language / Uncategorized
by Venkatesh Macha · Published February 18, 2014 · Last modified February 27, 2017
#include<stdio.h>main(){ int n; printf(“Enter any Number (0-255) : “); scanf(“%d”,&n); printf(“ASCII Equivalent of %d is %c n”,n,n);}/******** OUTPUT...
basic C programs / C codes / C interview programs / C language / Uncategorized
by Venkatesh Macha · Published February 18, 2014 · Last modified February 27, 2017
#include<stdio.h>main(){ int n,result=1; printf(“Enter any no :”); scanf(“%d”,&n); if(n<=0) { printf(“No Power to Negative Numbern”); return; } while(result...
#include<stdio.h>main(){ int a=20; printf(” value of a :%d…n”,a); { int a=100; printf(” inside value of a :%d…n”,a); }...
basic C programs / C interview programs / C tutorial / Uncategorized
by Venkatesh Macha · Published February 17, 2014
Format Specifiers in C Language : Format Specifier Description %c Character %hd Signed short Integer %hu Unsigned short...
C codes / C interview programs / C language / Simple C programs / String based C programs / Uncategorized
by Venkatesh Macha · Published February 17, 2014 · Last modified February 27, 2017
C Program to change the case of Alphabet: #include<stdio.h>void main(){ char ch;Label: printf(“Enter any character :”); scanf(” %c”,&ch);...
basic C programs / C codes / C interview programs / C language / Uncategorized
by Venkatesh Macha · Published February 16, 2014 · Last modified February 27, 2017
/********** Program **********/ #include<stdio.h>#include<limits.h>#include<float.h>int main(void){ printf(“sizeof(char) = %un”,sizeof(char)); printf(“sizeof(short) = %un”,sizeof(short)); printf(“sizeof(int) = %un”,sizeof(int)); printf(“sizeof(long) = %un”,sizeof(long)); printf(“sizeof(float)...
basic C programs / C codes / C interview programs / C language / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 16, 2014 · Last modified February 27, 2017
/**************** Program *************/ #include<stdio.h>main(){ int a,b; printf(“Enter two no’s :”); scanf(“%d%d”,&a,&b); printf(“Values Before SWAPPING a : %d.. b:...
basic C programs / C codes / C interview programs / C language / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 15, 2014 · Last modified February 27, 2017
/**************** Program ***************/ #include<stdio.h>main(){ int a,b,temp; printf(“Enter two no’s :”); scanf(“%d%d”,&a,&b); printf(“Values Before SWAPPING a : %d.. b:...
Basics of C / C / C language / C tutorial
Decision making statements if and if…else in C
9 Dec, 2018
Admin / RTP / rtpengine / ubuntu / Uncategorized / VOIP
Installing RTPEngine on Ubuntu 14.04
17 Aug, 2015