What do you want to save?
Add Code snippet
New code examples in category C
-
Phoenix Logan 2022-03-27 21:35:04
Write a c code to create a data base of students using structure. The member variables are roll, grade, and marks. Create 3 structure variable of 3 different roll numbers and find out the roll number of the student who is having highest marks.
#include <stdio.h> struct student { char firstName[50]; int roll; float marks; } s[10]; int main() { int i; printf("Enter information of students:\n"); // storing information for (i = 0; i < 5; ++i) { ... Add solution -
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
Best helpers
Ranking is empty