Discussion Title | Created date |
---|---|
Char declaration in C What is the difference between char *infile = argv[1]; and char infile = argv[1]; ? What is the * used for? |
Sunday, 28 October 2018 - 19:11 |
Vigenere's Cipher code C Here's a link explaining Vigenere's cipher https://www.geeksforgeeks.org/vigenere-cipher/ #include <ctype.h> #include <stdio.h> #include <stdlib.h> #... |
Friday, 26 October 2018 - 23:47 |
C Logic #include <stdio.h> int main(void) { float n; do { n = get_float("Change owed: \n"); } while(n<0.0); int quarter=0, dime=0, nickel=0,... |
Monday, 22 October 2018 - 18:25 |
Removing random noise signals without delay if(distance<40) { if(TCNT1>156 && p<6) //0.01s when used... |
Friday, 21 September 2018 - 07:50 |
3 Wheel Omni PID correction req_angle=45; velocity_x=cos(req_angle*val); velocity_y=sin(req_angle*val); velocity_1 = - velocity_x*(sin(theta*val)) + velocity_y*(cos(... |
Sunday, 16 September 2018 - 12:59 |
AVR pwm I am using atmega328p. Can i create two different pwms on OC1A and OC1B, both using the 16bit timer1. |
Wednesday, 12 September 2018 - 06:38 |
C operators What is the difference in the following operators in C? what values will they each output in avr? PORTA = !0xff; PORTA = ~0xff; PORTA = !PORTA; PORTA = ~PORTA; PORTA^=0xff; |
Thursday, 6 September 2018 - 06:35 |
CTC on atmega32. I need a CTC wave output |
Thursday, 2 August 2018 - 15:59 |