What is difference between structure and union?
No Answer is Posted For this Question
Be the First to Post Answer
What are the salient features of c languages?
How to set a variable in the environment list?
Is c# a good language?
how to swap 2 numbers within a single statement?
i want to job in your company, so how it will be possible.
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
What is an auto variable in c?
how to execute with out main in cprogram
i want to know the procedure of qualcomm for getting a job through offcampus
where does it flourished?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }