How many main () function we can have in a project?
No Answer is Posted For this Question
Be the First to Post Answer
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Explain command-line arguments in C.
Program to simulate second clock
What is a program?
how we can say java is platform independent, while we require JVM for that particular Operating System?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
How to declare pointer variables?
What is null character in c?
whitch value return void main?
Why should I use standard library functions instead of writing my own?