Why do we write return 0 in c?
No Answer is Posted For this Question
Be the First to Post Answer
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What are the types of c language?
How do you write a program which produces its own source code as its output?
What are type modifiers in c?
using for loop sum 2 number of any 4 digit number in c language
List the different types of c tokens?
Is there a way to jump out of a function or functions?
Why do we write return 0 in c?
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
if we take a number as a char then can we manipulate(add, subtract) on this number
What is a global variable in c?