What are # preprocessor operator in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Write a C program to find the smallest of three integers, without using any of the comparision operators.

7 Answers   TCS,


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


Why is not a pointer null after calling free?

0 Answers  


Difference between exit() and _exit() function?

0 Answers  


wite a programme in c to linear search a data using flag and without using flags?

3 Answers   TCS,






what is difference between procedural language and functional language ?

4 Answers   Wipro,


Why we not create function inside function.

0 Answers  


what is self refrential structure

3 Answers   HCL,


What is pragma c?

0 Answers  


Explain how can you determine the size of an allocated portion of memory?

0 Answers  


what is the associativity of bitwise OR operator?

1 Answers  


How can I manipulate strings of multibyte characters?

0 Answers  


Categories