why we are using semicolon at the end of printh statment
Answers were Sorted based on User's Feedback
Answer / sri
every statement must be end with semicolon.so We use
semicolon.
| Is This Answer Correct ? | 5 Yes | 22 No |
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
Write a c program to print the sizes and ranges of different data types in c?
Explain what’s a signal? Explain what do I use signals for?
i got 75% in all semester am i eligible for your company
How to write a multi-statement macro?
What is the code in while loop that returns the output of given code?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What is the Purpose of 'extern' keyword in a function declaration?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }