Is stack a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is c is a procedural language?
What happens if header file is included twice?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Why is c not oop?
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
What is sizeof 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
What should malloc(0) do?
how to find out the reverse number of a digit if it is input through the keyboard?
write function to reverse char array ... without using second array
Is int a keyword in c?
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...