What type of function is main ()?
No Answer is Posted For this Question
Be the First to Post Answer
What is Memory leakage ?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
what is the use of c program?
4 Answers Synergy, Web Synergies,
Explain can static variables be declared in a header file?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
Explain how do you print an address?
How can I set an array's size at run time?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Explain what are the different data types in c?
a simple c program using 'for' loop to display the output 5 4 3 2 1