How can I increase the allowable number of simultaneously
open files?
What are qualifiers in c?
What is const keyword in c?
why do we use pointer instead directly acessing the data?
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
What is assignment operator?
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What is the return type of sizeof?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
Write a program on swapping (100, 50)
What is methods in c?