What is the use of pragma in embedded c?
Answer / Sanjeev Kumar Sagar
In Embedded C, Pragma directives are preprocessor commands that modify the behavior of the compiler without changing the source code. They can be used to control various aspects like optimization, memory allocation, and debugging.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is double link list a linear data structure? If Yes, Why?If No, Why?
what type of questions arrive in interview over c programming?
How to add two numbers with using function?
How do you define a string?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Table of Sudoku n*n
How does the C program handle segmentation faults?
Is it fine to write void main () or main () in c?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
Why c is a procedural language?
how can use subset in c program and give more example