Blog about C programming and C tutorials, and Tech tips and Tricks, Linux Essentials and In depth analysis on Hidden C concepts
Owner: mvenkatesh431
Listed in: Academics
Language: English
Tags: Learn C programming, C tutorials, C programming, programming In C, Linux Essentials
Site Statistics
Unique Visitors Today:
0
Page Views Today:
0
Unique Visitors this Week:
0
Page Views this Week:
0
Unique Visitors this Month:
0
Page Views this Month:
0
Total Unique Visitors:
2,196
Total Page Views:
4,620
Total Hits Out:
63
Latest Blog Posts for Sillycodes4u
- Compiling C Program in Linux or Unix Based Systems | Compiling C program using GCCQuestion : How to compile C program in Linux:Here the steps to compile the C program under GNU Linux system.Create a source file.Compile the source file.Run the Executable file.Create a Source File:First of all create a source file by using your favo...
- C Program to calculate Minimum of three numbersDescription:This program accepts Three integers as input and calculates the Minimum number. Program :#include<stdio.h>int main(){ int a,b,c,min; printf("Enter Three numbers : "); scanf("%d%d%d",&...
- C Program to Calculate Maximum of three numbersDescription: This program accepts Three integers as input and calculates the Maximum number.Program :#include<stdio.h>int main(){ int a,b,c,max; printf("Enter Three numbers : "); scanf("%d%d%d"...
- C Program to reverse a Number | Reverse number program in C langugeDescription: This program accepts one integer from the user and Generates Reverse of given number.Program :#include<stdio.h>int main(){ int num,rem,temp,rev_num; pri...
- C Program to Calculate sum of first N natural numbersDescription:This Program accepts one Integer from user and stores that value into the variable n. Then calculates the Sum of first n numbers. Formula to calculate Sum of first N natural Numbers :Program :#include<stdio.h>int main(){&...
- C program to Calculate sum of digits of given NumberDescription :This program accepts one Integer from user and calculates the Sum of the individual digits of given number. Ex: if the number is 1234 then sum of digits is 1+2+3+4 that is 10.Program :#include<stdio.h>int main(){ &n...
- C Program to calculate area of Circle, if Radius is given | Area of Circle program in C languageDescription: This program accepts one value(float value) from user and stores it into radius parameter. Then it will calculate the Area of Circle based on that radius.Formula for Area of Circle:Here is the formula to calculate the area of Circle...
- C Program to check given number is positive or Negative using If conditionDescription :This program accepts one integer from user and checks given number is positive or negative.Program :#include<stdio.h>int main(){ int num; printf("Enter any Number : "); scanf("%d",&...
- Installing OpenSIPS using Debian Package (apt-get install) on Ubuntu 14.04/12.04First of all add OpenSIPS Debian package repository to the Ubuntu source package repository, To do this go to http://apt.opensips.org/ and add any of the apt repositories to In your /etc/apt/source.list.Adding the archive key:Thi...
- SillyCodes : C program to check given Number is Even or OddDescription:This program accepts one Integer value from user and checks if the given number is Even number or Odd number.Program :#include<stdio.h>int main(){ int num,rem; &nbs...
Loading Comments...
Comments
{ds_PageTotalItemCount} commentcomments
{pvComments::date}
{pvComments::comment}