C Programming Code Examples
C > Bitwise Operators Code Examples
C program to get nth bit of a number
Count Numbers of Words Digits & Vowels -
Program find number of words, blank spaces, Special symbols, Digits, "Vowels" by pointers. We are going to accept string use 'gets()'. We are not using scanf() to accept string because
C++ Switch Statement Control Statement -
"Switch statement" is multi-way decision that tests whether an expression 'matches' one of a number of "constant integer", and branches accordingly. 'Switch statement' that allows us
Enters Student Marks and Find Percentage -
Write a C program code to input marks of five subjects Computer, Chemistry, Mathematics, Biology, Physics & Calculate Percentage and grade according to given conditions. Student
Using Virtual Functions in C++ Language -
See in this case the output is Woof, which is what we expect. What happens in this case? Since we marked the function animalSound() as virtual, the call to the function is resolved
Program to Display Odd numbers without -
C Program to print odd numbers from 1 to n without if statement. The above approach is not optimal approach to print odd numbers. Observe the above program for a while. You
Structure is A Compound Data Type that -
To store Student details like student 'name', student 'roll num', 'student age'. You have 2 ways to do it, one way is to create different variables for each data, but the downfall of
C++ Codes Prints One Dimensional Arrays -
You have to ask to the user to enter array size array elements to store all the array elements in one dimensional and then print the array in "one dimension" using one for loop as shown
C Programming language Reserved Words -
if, else, switch, case, default, break, int, float, char, double, long, for, while, do, void, goto, auto, signed, const, extern, register, return, unsigned, continue, enum, sizeof, struct and