Tell us something about keyword 'auto'.
No Answer is Posted For this Question
Be the First to Post Answer
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is difference between %d and %i in c?
I came across some code that puts a (void) cast before each call to printf. Why?
Why do we use return in c?
Which function in C can be used to append a string to another string?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is the main differences between C and Embedded C?
What is 'bus error'?
What are comments and how do you insert it in a C program?
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
main() {int a=200*200/100; printf("%d",a); }