Is it fine to write void main () or main () in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
Program to trim a given character from a string.
why java is called as a purely oops language.
What is null pointer constant?
what are # pragma staments?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
What is the purpose of type declarations?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
What will the preprocessor do for a program?
How can a number be converted to a string?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
Is it possible to pass an entire structure to functions?