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
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
void main() { int i=5; printf("%d",i+++++i); }
What is formal argument?
What is a header file?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
Explain low-order bytes.
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
program to find the roots of a quardratic equation
Can anyone tell what is stack overflow? what precaution we should take?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
what are the files which are automatically opened when a c file is executed?