What is identifiers in c with examples?



What is identifiers in c with examples?..

Answer / Durgesh Kumar Mishra

Identifiers in C are names given to variables, functions, constants, and labels. They help identify unique items within the program. Examples: int num = 10; void myFunction(); const double PI = 3.14;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

1 Answers  


What is period operator in c?

3 Answers   Wipro,


How to find a missed value, if you want to store 100 values in a 99 sized array?

1 Answers   Honeywell, Zomato,


Which header file is essential for using strcmp function?

1 Answers  


what is the maximum no. of bytes calloc can allocate

4 Answers   Mphasis,


main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??

19 Answers   EBS, Ramco, Sangwin, TCS,


What is a structural principle?

1 Answers  


What are pointers?

1 Answers   Accenture, Tavant Technologies, Zensar,


4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none

10 Answers  


how many errors in c explain deply

1 Answers  


What is an arrays?

1 Answers  


What is the difference between constant pointer and pointer to a constant. Give examples.

4 Answers   TCS,


Categories