Why c is a mother language?
What is difference between %d and %i in c?
provide an example of the Group by clause, when would you use this clause
What will be the outcome of the following conditional statement if the value of variable s is 10?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is printf () in c?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Explain do array subscripts always start with zero?
What is the code in while loop that returns the output of given code?
Can include files be nested? How many levels deep can include files be nested?
What is non linear data structure in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Why string is used in c?
If fflush wont work, what can I use to flush input?