#coding
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",...
Just solved all challenges of this module on hackerrank!
#include <iostream> #include <math.h> using namespace std; int main(){ // Decimal to binary: int n; cout<<"enter: "; cin>>n; int...