Answer Posted / srsabariselvan
Dennis MacAlistir Ritchie
| Is This Answer Correct ? | 92 Yes | 16 No |
Post New Answer View All Answers
In C language, a variable name cannot contain?
What are the advantage of c language?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is the purpose of void in c?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is a buffer in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is array of structure in c programming?
Differentiate between #include<...> and #include '...'
i have a written test for microland please give me test pattern
Explain the use of 'auto' keyword
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 are the primitive data types in c?
What is the sizeof () a pointer?