Why use int main instead of void main?
No Answer is Posted For this Question
Be the First to Post Answer
Give me basis knowledge of c , c++...
Where register variables are stored in c?
Are bit fields portable?
When should we use pointers in a c program?
what is recursion in C
Write a c program to print the sizes and ranges of different data types in c?
write a program to print the all 4digits numbers & whose squares must me even numbers?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Explain how to reverse singly link list.
With the help of using classes, write a program to add two numbers.
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }