What are volatile variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the differences between Structures and Arrays?
Why static is used in c?
What is #line?
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
Explain how do you print only part of a string?
Explain the difference between structs and unions in c?
Explain how can I manipulate strings of multibyte characters?
What is the advantage of c?
What is wrong with this initialization?
while initialization of array why we use a[][2] why not a[2][]...?
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
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