Why we use conio h in c?
No Answer is Posted For this Question
Be the First to Post Answer
hi send me sample aptitude papers of cts?
Write a C program to convert an integer into a binary string?
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
Tell me what is null pointer in c?
Table of Sudoku n*n
What is difference between Structure and Unions?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Why c is procedure oriented?
Can main () be called recursively?
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
What are qualifiers in c?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }