What is file in c preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
Where we use clrscr in c?
what is purpose of fflush(stdin) function
is it possible to create your own header files?
write a program to display the numbers having digit 9 in the given range from 1 to 100
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
Explain what is the stack?
Explain how can I make sure that my program is the only one accessing a file?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is line in c preprocessor?
How can I read a binary data file properly?
What are the key features in c programming language?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }