What are the two types of functions in c?
No Answer is Posted For this Question
Be the First to Post Answer
c pgm count no of lines , blanks, tabs in a para(File concept)
What are the different types of errors?
What compilation do?
7 Answers Geometric Software, Infosys,
What is the difference b/w Structure & Array?
Create a simple code fragment that will swap the values of two variables num1 and num2.
please explain every phase in the "SDLC" in the dotnet.
program to find a smallest number in an array
Write a c program to print the sizes and ranges of different data types in c?
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
Why do we write return 0 in c?