Answer Posted / sandeep
abcd*+e-/
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
What is register variable in c language?
Can a void pointer point to a function?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What kind of structure is a house?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is pass by reference in c?
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
int i=10; printf("%d %d %d", i, i=20, i);
What are type modifiers in c?
What does return 1 means in c?
What is dynamic variable in c?
What is the difference between call by value and call by reference in c?
Is c easy to learn?
Explain the difference between structs and unions in c?