Click here to Skip to main content
15,887,485 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
#include<stdio.h>
#include<conio.h>
void main ()
{
	Print f ("In My name is Ali");
	getch();
}

[Error] 'Print' was not declared in this scope

what is this error in dev c++

What I have tried:

i dont know what to do its my first program
Posted

1 solution

It's "printf("In My name is Ali");", not "Print f (". Character case and spelling matter.
 
Share this answer
 
v2
Comments
CPallini 12-Dec-23 2:07am    
5.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900