What is data structure in c programming?


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

Post New Answer

More C Interview Questions

What is an volatile variable?

15 Answers   HP,


Can we include one C program into another C program if yes how?

7 Answers   Infosys,


YBJBU6

1 Answers  


pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()

2 Answers   TCS, ZenQ,


Can we increase size of array 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 function pointer c?

0 Answers  


implement OR gate without using any bitwise operator.

1 Answers   Alcatel, Wipro,


Function calling procedures? and their differences? Why should one go for Call by Reference?

0 Answers   ADP,


what will happen if you free a pointer twice after allocating memory dynamically ?

3 Answers   Novell,


Can variables be declared anywhere in c?

0 Answers  


How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.

1 Answers   HCL,


Categories