What do you want to save?
Add Code snippet
New code examples in category C
-
Phoenix Logan 2022-03-27 18:00:02
C example of if else
if (<condition>) { <code> } else if (<condition>) { <code> } else { <code> } /* example */ int money = 50; if (money < 15) { go_home(); } else if (money >= 600) { buy_all(); } else { buy_tickets(money / 15); } /... Add solution -
Phoenix Logan 2022-03-27 17:10:18
sum of digits in c using for loop
#include <stdio.h> int main() { int n, sum = 0, r; printf("Enter a number\n"); for (scanf("%d", &n); n != 0; n = n/10) { r = n % 10; sum = sum + r; } printf("Sum of digits of a number = %d\n... Add solution -
-
Krish 2022-03-27 07:35:09
Multi Select with icons htm;
<select title="Select your surfboard" class="selectpicker"> <option>Select...</option> <option data-thumbnail="images/icon-chrome.png">Chrome</option> <option data-thumbnail="images... Add solution -
Awgiedawgie 2022-03-24 20:20:01
C printf to string
// int sprintf(char *str, const char *format, ...); char *printf_to_string() { char buffer[128] = {0} //Must be big enough // writing printf output in buffer sprintf(buffer, "some %s here...\n", "text"); // duplicate if needed... Add solution
Best helpers
Ranking is empty