Why we use void main in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is a stream water?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
Why does this code crash?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
Can anyone tell what is stack overflow? what precaution we should take?
What is %g in c?
swapping of two numbers without using third variable using AND and OR operators
What is a stream?
write a progam to display the factors of a given number and disply how many prime numbers are there?
How can you access memory located at a certain address?
how to find greatet of 10 numbers without using array?