MCQOPTIONS
Bookmark
Saved Bookmarks
→
Technical MCQs
→
2D Transformation And Answers
→
__________ statements are processed by the pre-pro..
1.
__________ statements are processed by the pre-processor.
A.
#def
B.
typedef
C.
type
D.
#define
Answer» E.
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
<pre class="result notranslate">#include <stdio.h>typedef struct student { char *a; }stu; void main() { struct student s; s.a = ""hey""; printf(""%s"", s.a); }</pre>10.#definecan be used to define alias for values as well
<pre class="result notranslate">#include <stdio.h>typedef struct student { char *a; }stu; void main() { struct stu s; s.a = ""hi""; printf(""%s"", s.a); }</pre>9.What will be the output of the following C code?
<pre class="result notranslate">string p = "HELLO";</pre>7.typedef int (*PFI)(char *, char *)creates ___________
<pre class="result notranslate">#include <stdio.h>#define TRUE 1 int main( ) { printf( ""Value of TRUE : %d"", TRUE); return 0;}</pre>6.Which option should be selected to work the following C expression?
__________ statements are processed by the pre-processor.
___________ is a C-directive which is also used to define the aliases for various data types.
can we use typedef to give a name to your user defined data types as well?
The C programming language provides a keyword called _________, which you can use to give a type a new name.
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply