What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
5 22977write 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 16497WHAT 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 3914
Can we declare variables anywhere in c?
Is c easy to learn?
How do you convert strings to numbers in C?
What are global variables and how do you declare them?
What is a c token and types of c tokens?
Explain how can I read and write comma-delimited text?
Tell us something about keyword 'auto'.
How do we open a binary file in Read/Write mode in C?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What are conditional operators in C?
What are the two types of functions in c?
How can you convert integers to binary or hexadecimal?
Explain what are header files and explain what are its uses in c programming?
What is a char in c?
What is difference between union and structure in c?