What are types of functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is a floating point in c?
what is the little endian and big endian?
Why is c used in embedded systems?
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
What is function prototype in c with example?
How to avoid buffer overflow?
program to print circle structure
program to find the magic square
What compilation do?
7 Answers Geometric Software, Infosys,
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
When do we get logical errors?
#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); }