Debugging Syntax Error Problems
Problem 1
#include <stdio.h>
Int main(void){
printf("oh bug where are you?\n");
return 0;
}oh bug where are you?Problem 2
Problem 3
Last updated
#include <stdio.h>
Int main(void){
printf("oh bug where are you?\n");
return 0;
}oh bug where are you?Last updated
#include <stdio.h>
int main(void){
printf("This is a \"buggy" program\n");
return 0;
}This is a "buggy" program#include <stdio.h>
int main(void){
int first;
int second;
printf("Please enter a number: ");
scanf("%d",&first);
printf("Please enter another number: ");
scanf("%d",&Second);
printf("%d + %d = %d \n",first,second, frist+second);
}