What is sizeof array in c?
No Answer is Posted For this Question
Be the First to Post Answer
Can you add pointers together? Why would you?
What is calloc malloc realloc in c?
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
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
a simple program in c language
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
write a program to find the frequency of a number
What is difference between structure and union in c programming?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)