What is declaration and definition in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between ++a and a++?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
Is c functional or procedural?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Why is structure padding done in c?
what does ‘segmentation violation’ mean?
What are formal parameters?
What are register variables in c?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
what is uses of .net
Is it valid to address one element beyond the end of an array?