How many identifiers are there in c?


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

Post New Answer

More C Interview Questions

How can I increase the allowable number of simultaneously open files?

1 Answers   CSC,


consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none

7 Answers   TCS,


struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā€œ%dā€,s.x); }

2 Answers   Vector,


Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;

18 Answers   Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,


What is s or c?

0 Answers  






Explain what is dynamic data structure?

0 Answers  


what is the main use of c where it can use the c

2 Answers   Infosys,


Describe explain how arrays can be passed to a user defined function

0 Answers  


Why c language is called c?

0 Answers  


Is the following code legal? struct a { int x; struct a b; }

4 Answers  


What is this infamous null pointer, anyway?

0 Answers  


atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation

0 Answers  


Categories