Why do we write return 0 in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is typedef struct in c?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
What is a method in c?
how to find greatet of 10 numbers without using array?
What is pointers in c with example?
What are identifiers c?
How is actual parameter different from the formal parameter?
how can we Declare a variable in c without defining it.
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
What is hash table in c?
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
Is there a way to jump out of a function or functions?