W3Schools Tryit Editor

PHOTO EMBED

Thu Feb 23 2023 16:57:20 GMT+0000 (Coordinated Universal Time)

Saved by @vishpriya412 #undefined

#include <stdio.h>
​
int main() {
  int myNum = 15;
  
  int myOtherNum = 23;
​
  // Assign the value of myOtherNum (23) to myNum
  myNum = myOtherNum;
​
  // myNum is now 23, instead of 15
  printf("%d", myNum);
  
  return 0;
}
content_copyCOPY

https://www.w3schools.com/c/tryc.php?filename