main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / dgsfg
5
20
1
kuchh log pagal hain
%d aur int datatype main float value print karate hain(1.25)
hehehehe........
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
What is a c token and types of c tokens?
What are the advantages of c preprocessor?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is the advantage of c?
Which type of language is c?
What is meant by recursion?
Write programs for String Reversal & Palindrome check
How can a program be made to print the line number where an error occurs?
What is mean by data types in c?
Explain spaghetti programming?
Explain argument and its types.
Can you apply link and association interchangeably?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What does the c in ctime mean?
Explain that why C is procedural?