An instruction which is analysed and acted upon by the processor prior to the compiler going its work
a) directive
b) constructive
c) constant
d) absolute mode
No Answer is Posted For this Question
Be the First to Post Answer
Write down the program to sort the array.
Difference between C and Embedded C?
What is the return type of sizeof?
What do you mean by dynamic memory allocation in c?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
What are volatile variables?
What is difference between arrays and pointers?
What are the key features of C?
Where static variables are stored in memory in c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
what will be the output for the following main() { printf("hi" "hello"); }