Explain what does the function toupper() do?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how does free() know explain how much memory to release?
write a code for large nos multilication (upto 200 digits)
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
what is the difference between declaration ,defenetion and initialization of a variable?
What are the advantage of c language?
What is volatile variable how do you declare it?
String concatenation
What is pragma c?
what is the difference between c and c++?
What are the disadvantages of a shell structure?
What is a void * in c?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }