How many data structures are there in c?
What is #include cctype?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What is table lookup in c?
Does c have enums?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
What is data types?
How can I find out how much memory is available?
In a switch statement, what will happen if a break statement is omitted?
Hi can anyone tell what is a start up code?
Is r written in c?
write a program that finds the factorial of a number using recursion?
What is the meaning When we write "#include" what is # and what does include does there???