Under what circumstances does a name clash occur?


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

Post New Answer

More C Interview Questions

enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?

4 Answers   TCS,


What is structure padding and packing in c?

0 Answers  


program in c to print 1 to 100 without using loop

9 Answers   Wipro,


What is a macro?

0 Answers  


a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none

0 Answers  






What is wrong with this code?

0 Answers  


what is difference between #include<stdio.h> and #include"stdio.h"

4 Answers  


write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?

3 Answers   Mind Tree,


Do you have any idea how to compare array with pointer in c?

0 Answers  


Without using main fn and semicolon,print remainder for a given number in C language

2 Answers  


I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?

2 Answers  


enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }

4 Answers   ME,


Categories