Is array a primitive data type in c?


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

Post New Answer

More C Interview Questions

Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.

4 Answers  


What is meant by preprocessor 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  


Explain what are reserved words?

0 Answers  


What is the difference between exit() and _exit() function in c?

0 Answers  






What is function pointer and where we will use it

2 Answers   Infosys, NetApp,


Tell me what is the purpose of 'register' keyword in c language?

0 Answers  


What is the scope of local variable in c?

0 Answers  


main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }

1 Answers   CodeChef,


What are control structures? What are the different types?

0 Answers  


Is it possible to initialize a variable at the time it was declared?

0 Answers  


What is a const pointer?

0 Answers  


Categories