Why we use conio h in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different categories of functions in c?
What is the importance of c in your views?
What is the difference between printf and scanf in c?
Are negative numbers true in c?
What is volatile variable how do you declare it?
What is an anonymous union and where to apply that ?
Is that possible to store 32768 in an int data type variable?
what is disadvantage of pointer in C
What are the 4 types of functions?
Can we write a program without main() function?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Explain the concept and use of type void.