why programs in c are running with out #include<stdio.h>?
some warnings are display in terminal but we execute the program we get answer why?
eg:
main()
{
printf("hello world
");
}
No Answer is Posted For this Question
Be the First to Post Answer
How do I convert a string to all upper or lower case?
my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details
how to print a statement in c without use of console statement ,with the help of if statement it should print
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
What is the difference between break and continue?
What is the benefit of using an enum rather than a #define constant?
What is the difference between malloc calloc and realloc in c?
why 'c' is called middle level language.
How would you find a cycle in a linked list?