Answers for "getch' was not declared in this scope"

C
-1

getch' was not declared in this scope

#include<stdio.h>
	main(){
		int a = 5;
		int b = 5;
		printf("Value of a: %d and b: %dn",a,b);
		printf("Value of a: %dn", ++a);
		printf("Value of b: %dn", b++);
	getch(0);
	return(0);
	}
Posted by: Guest on February-03-2022

Code answers related to "getch' was not declared in this scope"

Code answers related to "C"

Browse Popular Code Answers by Language