What does c value mean?


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

Post New Answer

More C Interview Questions

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 c and java?

1 Answers  


What is the right type to use for boolean values in c?

0 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


What is #include called?

0 Answers  






what does data structure mean?

8 Answers  


How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;

2 Answers  


who invented c

13 Answers   IBM,


Write a routine that prints out a 2-D array in spiral order!

1 Answers   Lucent,


What is meant by realloc()?

0 Answers  


Why doesn't C support function overloading?

2 Answers  


what is the difference between postfix and prefix unary increment operators?

3 Answers  


Categories