Question :
What are the supported types of pragma Usage?
Answer:
There are two types of pragma usage:
1.pragma directives
2.Pragma operators
pragma directives have the following syntax:
#pragma section("memory section")
Line-of-code
Pragma operators have the following syntax:
_Pragma ("section(\"memory section\")")
Line-of-code
Note:
While using Pragma operator, 'P' should be Uppercase, whereas in pragma directives, 'p' should be lowercase.