#include<stdio.h>
#include<conio.h>
void main()
{
int m=0111,n=20;
printf("%d%d\n",m,n);
getch();
}
In a switch statement, explain what will happen if a break statement is omitted?
What are loops in c?
WAP to find that given no is small or capital
Can include files be nested?
What is the diffrent between while and do while statement ?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
Why we not create function inside function.
Why do we use main function?
why programming language C is still used in operating system's kernel??
What is a ternary operator in c?
what is use of loop?
What is the difference between constant pointer and pointer to a constant. Give examples.