What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
5 22983write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 16498WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW
IT COME ..
#include
What are the different flags in C? And how they are useful? And give example for each in different consequences?
1 3918
Sir i need notes for structure,functions,pointers in c language can you help me please
How can I read/write structures from/to data files?
Is int a keyword in c?
Which header file is essential for using strcmp function?
Explain the difference between exit() and _exit() function?
What is meant by 'bit masking'?
What is scanf () in c?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
How can I prevent another program from modifying part of a file that I am modifying?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
I have seen function declarations that look like this
Explain function?
What are run-time errors?
Can static variables be declared in a header file?
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); } }