Bhuwan Sharmabhuwan.hashnode.dev·Sep 22, 2024C Tutorial -6 (Pointers, pass by value, pass by reference)#include<stdio.h> #include<stdlib.h> // Q.2 Passing a pointer j to a function and printing its address. void print_address(int* j){ printf("%d\n", j); printf("%d", *j); } // Q.3 Program to change the value of a variable to ten times of its current va...DiscussC
Bhuwan Sharmabhuwan.hashnode.dev·Sep 22, 2024C Tutorial -1#include <stdio.h> int main(){ // Q.1 Printing the area of a rectangle, by taking user input. int length; int width; printf("Sir, pls enter the value of length: "); scanf("%d", &length); printf("Sir, pls enter the value of width: "); scanf("%d", &wid...DiscussC
Akshat Joshiakshatjoshi.hashnode.dev·Aug 1, 2024🚀 US Government to Convert All C Code to Rust 🦀In a groundbreaking move that could redefine software security, the US government has announced an ambitious plan to convert all legacy C code to Rust. After more than two decades of grappling with memory safety issues in C and C++, the software engi...Discuss·10 likes·58 readsRust
Ashutosh Singhcodeaashu.hashnode.dev·Jun 11, 2024Basic User Authentication System in CIntroduction: Introduce the concept of user authentication systems. Mention the importance of user authentication in software applications. Briefly describe the purpose and functionality of the code. Code Overview: Explain the purpose of each h...Discussc project
Ashutosh Singhcodeaashu.hashnode.dev·Jun 8, 2024Building a Basic Banking System in CTable of contents Introduction: Code Overview: Functions: Deposit Function Withdraw Function Transfer Function View Transactions Function Main Function Conclusion Output: Introduction: Discuss the importance of banking systems in managin...DiscussC
Ashutosh Singhcodeaashu.hashnode.dev·Jun 8, 2024Simple Database Management in CIntroduction Discuss the significance of databases in data organization. Introduce the code's purpose in managing basic databases. Code Overview Define structures for columns and tables. Implement functions for creating tables, inserting data, ...DiscussC
Ashutosh Singhcodeaashu.hashnode.dev·Jun 8, 2024Understanding Huffman Coding in CIntroduction: Briefly explain Huffman coding and its importance in data compression. Code Overview: Define structures for nodes and the min heap. Implement functions for creating nodes, min heap operations, and building the Huffman tree. Functi...DiscussC
Ashutosh Singhcodeaashu.hashnode.dev·Jun 7, 2024Building a Library Management System in CIntroduction Explain the purpose of the Library Management System and its importance in organizing library resources efficiently. Code Overview Provide an overview of the code structure and key functionalities of the Library Management System: Str...DiscussC
Ashutosh Singhcodeaashu.hashnode.dev·Jun 7, 2024Building a Number Guessing Game in CIntroduction Introduce the Number Guessing Game and its objective to guess a random number within a specified range. Code Overview Explain the code structure and key functionalities of the Number Guessing Game: Random Number Generation: Use rand() a...DiscussC
Ashutosh Singhcodeaashu.hashnode.dev·Jun 7, 2024Building a Student Grade Tracker in CIntroduction Introduce the concept of a Student Grade Tracker and its importance in educational institutions. Explain that the blog will guide readers through creating a basic version of a Student Grade Tracker in C. Code Overview Explain the structu...DiscussC