Topic: Pragma C
Answers to Common Questions
What is the use of 'pragma' in C language?
A preprocessor directive that is not specified by the ISO standard. Pragmas often control actions of the compiler and linker. A pragma always begins with a number sign (#). Note: There are comments associated with this question. See the dis... Read More »
Source: http://wiki.answers.com/Q/How_can_you_use_c_pragma
What are #pragmas in C?
For example, if you are using a Microsoft compiler, then #pragma warning(push) and #pragma warning(pop) are explained here : http://msdn.microsoft.com/en-us/library/2c8f766e(VS.80).aspx Read More »
Source: http://www.experts-exchange.com/Programming/Open_Source/Q_2436144...
How you can use pragma in c language?
a preprocessor directive that is not an specified ISO standard that controls actions of complier and linker Read More »
Source: http://wiki.answers.com/Q/How_you_can_use_pragma_in_c_language
Answers to Other Common Questions
pragma is a directive ... it is very useful like.. mainly we use in 3 cases 1:- pragma startup 2:- pragma exit 3:- pragma warn 1> pragma startup and exit :== pragma startup is used from where u want to execute ur program before ur main() st... Read More »
Source: http://answers.yahoo.com/question/index?qid=20101028040239AA7Nvfu
Here is information that takes form MSDN ------------------------------------------------------ Pragma Directives Each implementation of C and C++ supports some features unique to its host machine or operating system. Some programs, for ins... Read More »
Source: http://www.experts-exchange.com/Q_20073091.htm
#pragma does nothing with C language, it is a compiler directive. Its uses are for changing the compiler settings for a particular part of code. For instance if you want to add some inline assembly code to a C routine, you would use #pragma... Read More »
Source: http://answers.yahoo.com/question/index?qid=20060925092613AAi1OiY
If you have no more questions, then I will answer. Read More »
Source: http://www.experts-exchange.com/Programming/Languages/CPP/Q_11389...
#pragma once is supported by only a small number of C++ compilers. What the previous poster was trying to say is that your code will not be portable unless you're using the other method: #ifndef _SUFFICIENTLY_UNIQUE_CODE #define _SUFFICIENT... Read More »
Source: http://answers.yahoo.com/question/index?qid=20070108234110AACrRHv
BobSamomic, you don't cancel you Q. Pity for PTS and for my efforts to help. I don't find you real problem, but minimum I try make it. Again my congratulations. Alex Read More »
Source: http://www.experts-exchange.com/Q_10191977.htm
Hi, I guess at least you heard about the #pragma directive. Pragma is nothing but the implementation of specific directive that means each pragma directive has the different implementation rule and use. There are many type of different prag... Read More »
Source: http://forums.techarena.in/software-development/1294883.htm
Want A Personal Answer?
735,365 people are answering.
About - Privacy - AskEraser - Advertise - Careers - Ask Blog - iPhone - Android - Help - Feedback ©2012 Ask.com