Tuesday, March 31, 2020

C Program check number is positive or negative using if else

C Program check number is positive or negative using if else  #include int main() { double num; // constant number printf("Enter a number: "); // enter user scanf("%lf", &num); // storing constant value if (num <= 0.0) // check number is greater or not { if...

C Program to Swap two number without using temporary variable

C program to Swap two Numbers Without Using Temporary Variable #include int main() { double a, b; // initialization constant variables printf("Enter a: "); // user enter number scanf("%lf", &a); // storing value of user number printf("Enter b: "); // user enter number scanf("%lf",...

Monday, March 30, 2020

c program to Find ASCII Value of a Character

C Program to Find ASCII Value of a Character In C programing, a Character variables holds ASCII value (an integer number between 0 to 127) rather than that character itself. That value is known as it's ASCII value. For example, the ASCII value of  'A' is 65. What this means that, if you assign...

c program to find the size of int float double and char

C program to find the size of int, float, double and char  #include int main() { int intType; // integer value float floatType; // Constant value double doubleType; // double Constant value char charType; // Character value // sizeof evaluates the size of a variable ...

Sunday, March 29, 2020

What is Input Output in C Language .

Input and Output (I/O) In this you will learn to use scanf() function to take input from user and printf() function to display the result to the user. C Output In C programming, Printf() funcation is the main output function to display result to user. The function sends formatted output to the screen. Example...

Saturday, March 28, 2020

What is C Data Type structure

C Data Type In this you will learn basic data types such as int, float, char etc in C programming. In C programming, data types are declaration of variables. This determines the type and size of data association with variables.  For example : Here, myVar, is a variable of int (integer)...

Friday, March 27, 2020

C Variables, Constants and literals

C Variables, Constants and literals  In this you will learn about variables and rules of naming a variable. You will  learn about different literals in C programming and how to create constant. Variables In programming, a variable is a container ( storage data ) to hold data. To...

Thursday, March 26, 2020

C Keywords and Identifier

C Keywords and Identifier  In this tutorial, you will learn about keywords, reserved words in C programming that are part of the Programming. Also you will learn about identifiers and how to name them. Character set A character set is a set of alphabets, letter and some special character...

How to Become a Software Engineer if You Don't Have a Computer Science Degree

Technology How to Become  a Software Engineer if You Don't Have a Computer Science Degree. There isn't just one way to become an engineer anymore. These days you can attend a bootcamp, teach yourself, get a degree, or get an internship. I attend a bootcamp but I Still had to teach myself...

Recent Posts