void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answers were Sorted based on User's Feedback
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
What is sizeof int in c?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
why integer range between -327680to+32767
What is alloca() and why is its use discouraged?
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
Explain the differences between public, protected, private and internal.
What is size of union in c?
Are bit fields portable?
What is declaration and definition in c?
Explain the difference between call by value and call by reference in c language?
Can a variable be both constant and volatile?