Are there namespaces in c?


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

Post New Answer

More C Interview Questions

How do I swap bytes?

0 Answers  


What is the usage of the pointer in c?

0 Answers  


Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.

5 Answers  


how do you execute a c program in unix.

0 Answers  


What is string function in c?

0 Answers  






What is extern storage class in c?

0 Answers  


how to write a prog in c to convert decimal number into binary by using recursen function,

1 Answers  


what are the different storage classes in c?

0 Answers   TCS,


In which category does main function belong??

5 Answers  


What are different storage class specifiers in c?

0 Answers  


What is extern variable in c with example?

0 Answers  


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,


Categories