Why do we write return 0 in c?
No Answer is Posted For this Question
Be the First to Post Answer
How are portions of a program disabled in demo versions?
while initialization of array why we use a[][2] why not a[2][]...?
Write a program that can show the multiplication table.
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
What is a segmentation fault?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
What are the modifiers available in c programming language?
Is there any possibility to create customized header file with c programming language?
What is anagram in c?
What does c mean in standard form?
How to implement call back functions ?