What are identifiers c?


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

Post New Answer

More C Interview Questions

do you think its fraud or original company?

0 Answers  


what is the function of void main()?

8 Answers  


What are static variables in c?

0 Answers  


is it possible to create your own header files?

0 Answers  


can we write a c program with out using main

3 Answers  






How do I declare a pointer to an array?

6 Answers   IBM,


why integer range between -327680to+32767

2 Answers  


How many keywords (reserve words) are in c?

0 Answers  


How many loops are there in c?

0 Answers  


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

0 Answers  


what is the difference between exit() and _exit() functions?

2 Answers  


int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????

1 Answers  


Categories