Category: A ll Codes
Code: #include<stdio.h> int main() { int N1,N2,ch,resi; float resf; do { printf(“\n\n Enter value for operation:”); printf(“\n…
Divide a number by 10 will give you a digit as int sample: 256/10=25.6==25 25/10=2.5==2 256%10=6 25%10=5…
#include<stdio.h> int main(void){ unsigned int i; int j; i=1; /*left shifts */ for(j=0;j<4;j++){ i=i<<1; printf(“Left Shift %d:…
Vid: Code: Array Implementation: #include<iostream> using namespace std; #define MAX_SIZE 101 int A[MAX_SIZE]; int top=-1; //top==index of…
cheat sheet: http://bigocheatsheet.com/ Good for Programmers: It’s also good: It’s good for space complexity and cost. Golden…
Recent Comments