Showing results for charlys pizza
GitHub Repo
https://github.com/ImVi22/c-programming-usleep-function
ImVi22/c-programming-usleep-function
#include <stdio.h> #include <unistd.h> int main() { setbuf(stdout,NULL); char name[15] ="Farm House"; // TODO Get name as user input char size; int personItServes; float retailPrice; printf("Enter the size of the pizza as either 'S', 'M' or 'L': "); scanf("%c", &size); printf("Enter the number of persons it serves: "); scanf("%d", &personItServes); printf("Enter retail price: "); scanf("%f", &retailPrice); printf("\nGenerating message...\n"); usleep(3000000); printf("\nYay! You have ordered a %s pizza of size %c that serves %d.\nPlease " "pay Rs. %.1f to the delivery person.", name, size, personItServes, retailPrice); printf("\n\nSending SMS...\n"); usleep(1000000); printf("\n\n***********SMS SENT**********\n\n"); return 0; }
GitHub Repo
https://github.com/qv1zee1/proect
qv1zee1/proect
setlocale(0, ""); int a1 = 10 int a2 = 25 int a3 = 40 int a4 = 65 int a5 = 90 char c1 = "a"; char c2 = "s"; char c3 = "d"; char c4 = "f"; char c5 = "g"; float f1 = 1.0; float f2 = 3.6; float f3 = 5.2; float f4 = 7.9; float f5 = 9.1; string s1 = "Привет"; string s = "C++"; string s3 = "pizza"; string s4 = "dog"; string s5 = "lol"; c
GitHub Repo
https://github.com/quantumdotdot/pizzatrainingset
quantumdotdot/pizzatrainingset
A text file compiling pizzas and their ingredients, in order to train a char-rnn network on how to assemble a good pie.
GitHub Repo
https://github.com/pizzascharly04-max/Pizzas-Charly