top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Can someone explain #pragma warn directive in c with example?

+2 votes
241 views
Can someone explain #pragma warn directive in c with example?
posted Feb 18, 2015 by Mohammed Hussain

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

In c there are many warning messages which can be on or off with help of #pragma warn.

Syntax:

#pragma warn +xxx
#pragma warn –xxx
#pragma warn .xxx

Where
+ means on
- means off
. means on/off (toggle)

xxx is indicate particular warning code in three alphabet. Example: rvl is warning code which means function should return a value.

#include<stdio.h>
#pragma warn –rvl
int main(){
    printf("It will not show any warning message");
    return 0;
}

Output: It will not show any warning message

When you will execute the above program then compiler will not show the warning message function should return a value because rvl warning
is off.

answer Feb 19, 2015 by Mohammed Hussain
...