how could explain about job profile
No Answer is Posted For this Question
Be the First to Post Answer
What is use of #include in c?
Why is sizeof () an operator and not a function?
post new interiew question and aptitude test papers
what are the various memory handling mechanisms in C ?
Is main() function predfined or userdefined?
#define f(x) main() { printf("\n%d",f(2+2)); }
we have a 3litres jug and a 5 litres jug and no measures on them. using these two jugs how can we measure 4 litres of water?
what is the associativity of bitwise OR operator?
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
Why we use int main and void main?
What are the average number of comparisons required to sort 3 elements?
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