What is wrong with this program statement? void = 10;
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find biggest of 3 number without relational operator?
can v write main() { main(); } Is it true?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
without using arithmatic operator solve which number is greater??????????
What are the advantages of Macro over function?
What's the total generic pointer type?
What is the difference between far and near in c?
Explain the difference between the local variable and global variable in c?
What are the application of void data type in c?
How reliable are floating-point comparisons?
what is the use of call back function in c?tell me with example
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?