Write a C program to calculate base A raised to the power B (A^B).
Two space-separated integers A and B.
Print the value of A^B.
-10 <= A <= 10, 0 <= B <= 15
2 3
8
2 raised to the power 3 (2 * 2 * 2) is 8.
#include <stdio.h>
int main() {
long long a;
int b;
if (scanf("%lld %d", &a, &b) == 2) {
// Write your code here
}
return 0;
}Embedded systems rely on efficient low-level programming to interact directly with hardware. In this course, you will learn how to write practical Embedded C programs used in real microcontroller-based systems. Rather than focusing only on theory, this course follows a practice-driven approach. Each lesson includes hands-on coding exercises that simulate real firmware development tasks used