Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Ankith Reddy
Page 31 of 73
Header files "stdio.h" and "stdlib.h" in C
stdio.hThe header file stdio.h stands for Standard Input Output. It has the information related to input/output functions.Here is the table that displays some of the functions in stdio.h in C language, Sr.No.Functions & Description1printf()It is used to print the strings, integer, character etc on the output screen.2scanf()It reads the character, string, integer etc from the keyboard.3getc()It reads the character from the file.4putc()It writes the character to the file.5fopen()It opens the file and all file handling functions are defined in stdio.h header file.6fclose()It closes the opened file.7remove()It deletes the file.8fflush()It flushes the file.Here is an example of stdio.h in C language, ...
Read MoreCreate a striped Bootstrap progress bar
Follow the below given steps to create a striped progress bar in Bootstrap −Add a with a class of .progress and .progress-striped.Next, inside the above , add an empty with a class of .progress-bar and class progress-bar-* where * could be success, info, warning, danger.Add a style attribute with the width expressed as a percentage. Say, for example, style = "60%"; indicates that the progress bar was at 60%.You can try to run the following code to form a striped progress bar −Example Bootstrap Example Striped Progress Bars Warning Progress Bar 45%Complete (warning) Danger Progress Bar 80% Complete (danger)
Read MoreSet important information for a list item in a list group with Bootstrap
use the list-group-item-info class in Bootstrap to set key information for a list item in a list group.You can try to run the following code to implement the list-group-item-info class −Example Bootstrap Example Java Interfaces Multi-threading Packages
Read MoreNest button groups with Bootstrap
Nest button groups within another button group i.e, place a .btn-group within another .btn-group. This is done when you want dropdown menus mixed with a series of buttons.To nest button groups, you can try to run the following code −Example Bootstrap Example Rank Marks Subjects Maths Science English
Read MoreAlign media objects with Bootstrap
To align media objects, use the .align class in Bootstrap. You can try to run the following code to implement the .align class.Use the .align-left class to align media to the left −Example Bootstrap Example Google Tag Manager Tutorial Introduction Google Tag Manager (GTM) is a free tool that makes it easy for marketers to add and update website tags.
Read MoreStyle the Bootstrap modal
Use the .modal-body class in Bootstrap to style the modal.You can try to run the following code to style modal −/p>Example Bootstrap Example Website Information Info × Warning If JavaScript isn't enabled in your web browser, then you may not be able to see this information correcty. Close
Read MoreFooter of the modal in Bootstrap
To set the footer of the Bootstrap modal, use the .modal-footer class.You can try to run the following code to implement the modal-footer class −Example Bootstrap Example Examination Result × Warning If JavaScript isn't enabled in your web browser, then you may not be able to see the result. Close
Read MoreAdd responsive features to Bootstrap navbar
To add responsive features to the navbar, the content that you want to be collapsed needs to be wrapped in a with classes .collapse, .navbar-collapse.You can try to run the following code toExample Bootstrap Example Toggle navigation Tools Online Compiler Image Editor Whiteboard Image Optimizer
Read MoreSizing Bootstrap pagination-* class
To size Bootstrap pagination-* class, use the pagination-lg and pagination-sm class.You can try to run the following code to size pagination −Example Bootstrap Example Questions Large Pagination « Q1 Q2 Q3 Q4 Q5 » Small Pagination « Q1 Q2 Q3 Q4 Q5 »
Read MoreAdd HTML headings into Bootstrap thumbnails
With Bootstrap, you can easily add heading to thumbnails.You can try to run the following code to add HTML headings −Example Bootstrap Example Thumbnail Heading
Read More