What are the data types present in c?


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

Post New Answer

More C Interview Questions

Define circular linked list.

0 Answers  


Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?

0 Answers  


int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā€œ%dā€,*(*(x+1)+3));

2 Answers   Wipro,


c program to add and delete an element from circular queue using array

3 Answers  


what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"

4 Answers  






Define macros.

0 Answers   Tech Mahindra,


What is switch in c?

0 Answers  


how to TOGGLE Nth bit of variable in a MACRO

1 Answers   NDS,


What is a C array and illustrate the how is it different from a list.

1 Answers   Amazon,


Does * p ++ increment p or what it points to?

0 Answers  


what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these

2 Answers   IBM,


which one is better structure or union?(other than the space occupied )

2 Answers  


Categories