Explain how do you determine a file’s attributes?
No Answer is Posted For this Question
Be the First to Post Answer
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Explain Function Pointer?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
can we print any string in c language without using semicolon(;)(terminator) in whole program.
Explain the bubble sort algorithm.
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Who is the main contributor in designing the c language after dennis ritchie?
Differentiate between static and dynamic modeling.
how to find turn around time in operating system?
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
Is printf a keyword?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?