What are the preprocessor categories?
No Answer is Posted For this Question
Be the First to Post Answer
How many keywords (reserve words) are in c?
What are types of preprocessor in c?
Which of these functions is safer to use : fgets(), gets()? Why?
What is the size of a union variable?
Tell me the use of bit field in c language?
What does the error message "DGROUP exceeds 64K" mean?
What is volatile variable in c with example?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
Write a program in c to replace any vowel in a string with z?
Can i use “int” data type to store the value 32768? Why?
what is difference between C and C++
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????