Why is a semicolon (;) put at the end of every program statement?
No Answer is Posted For this Question
Be the First to Post Answer
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Explain what does a function declared as pascal do differently?
What is the real time usage volatile?
Explain the differences between public, protected, private and internal.
Are bit fields portable?
What is string function in c?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
what is the difference between getch() and getche()?
What is int main () in c?
where does it flourished?
What are the advantages of external class?
How do you redirect a standard stream?