Why structure is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the salient features of c languages?
Explain built-in function?
what is the difference between NULL('\0') and 0?
Why is %d used in c?
How many types of functions are there in c?
write a c program to find the sum of five entered numbers using an array named number
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?
main() { float a=3.2e40; printf("%d",a); }
What is the hardest programming language?
Describe the modifier in c?
What is typedef?
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7