What are types of functions?
No Answer is Posted For this Question
Be the First to Post Answer
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
A program to write a number of letters and numbers, such as counting and display
What is use of integral promotions in c?
Can an array be an Ivalue?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
What is void pointers in c?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
What is && in c programming?
Can we write a program without main() function?
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,