What is the difference between void main and main in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
simple program of graphics and their output display
What are the storage classes in C?
What is the best way of making my program efficient?
What does struct node * mean?
Explain what is page thrashing?
main() { int a[10]; printf("%d",*a+1-*a+3); }
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
write a program of palindrome(madam=madam) using pointer?