History of C language
In 1965, Bell Telephone Laboratories, General Electric Company and Massachusetts Institute of Technology where working together to develop a new
Read moreC Tutorial
In 1965, Bell Telephone Laboratories, General Electric Company and Massachusetts Institute of Technology where working together to develop a new
Read moreOne may argue that if there is plethora of programming languages available, then what makes C language so special? There
Read moreIn order to communicate any idea, thought, instruction or information, humans make use of spoken language. The fact is that
Read moreThe following list illustrates the importance the C programming language, in no particular order: The C language is small and
Read moreType Casting in c Type casting means changing a variable of one data type into another. The compiler will automatically change
Read moreDifference between Type Casting and Type Conversion 1. Type Casting: In typing casting, a data type is converted into another
Read moreC Program to find GCD of N Numbers #include<stdio.h> int main() { printf(“\n\n\t\tC Program for Greatest Common Divisor(GCD)\n\n\n”); int x,
Read moreC Program to Display the current Date and Time #include<stdio.h> #include<time.h> int main() { printf(“\n\n\t\t C Program to display date
Read moreC program to Change the Text Background Color Few important points regarding this program are: SetConsoleTextAttribute: Sets the attributes of
Read moreC Program to create a Menu Driven software using Switch Case #include<stdio.h> int main() { printf(“\n\n\t\tMenu driven program in c\n\n\n”);
Read more