What is #include called?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
Why we use break in c?
What is c language used for?
what is the return type of printf
Difference between MAC vs. IP Addressing
Where is volatile variable stored?
What is the difference between strcpy() and memcpy() function in c programming?
A program to allow an input operand and operator from the operator and read on the display and output operand.
what is a non volatile key word in c language?
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
can we execute the program with the object file
Is array a primitive data type in c?