How can you check to see whether a symbol is defined?


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

Post New Answer

More C Interview Questions

What type is sizeof?

0 Answers  


f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?

7 Answers   Hughes,


What are global variables and how do you declare them?

0 Answers  


Write a program to interchange two variables without using the third variable?

17 Answers   Accenture, College School Exams Tests, Infotech,


2. What does static variable mean?

2 Answers  






how logic is used

0 Answers  


Describe the steps to insert data into a singly linked list.

0 Answers  


What is selection sort in c?

0 Answers  


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

0 Answers   TCS,


What is the real difference between arrays and pointers?

27 Answers   Hexaware, Logic Pro, TCS,


study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above

15 Answers   Accenture, TCS,


regarding pointers concept

0 Answers  


Categories