which operator is known as dummy operator in c?
Answers were Sorted based on User's Feedback
Tell us bitwise shift operators?
multiple of 9 without useing +,* oprator
What are extern variables in c?
Tell us something about keyword 'auto'.
What are local variables c?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
What is the use of getchar() function?
Once I have used freopen, how can I get the original stdout (or stdin) back?
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
Why c is known as a mother language?
how many key words availabel in c a) 28 b) 31 c) 32
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.