Why main is not a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Are global variables static in c?
explain what are pointers?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
What is the right way to use errno?
What is volatile variable in c?
how to find a 5th bit is set in c program
is assignment operator is arithmatic or not
what is the difference between global variable & static variable declared out side all the function in the file.
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
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