#c-programming-language
Read more stories on Hashnode
Articles with this tag
#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",...
#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...