Is it fine to write void main () or main () in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between null pointer and wild pointer?
Why c is called object oriented language?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
What are the application of void data type in c?
How can a string be converted to a number?
difference between Low, Middle, High Level languages in c ?
Explain what is a pragma?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
How many loops are there in c?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
what is real time system?what is the differance between hard and soft real time systems