How can I use a preprocessorif expression to ?
No Answer is Posted For this Question
Be the First to Post Answer
What are compound statements?
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
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
What are lookup tables in c?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
how to print 212 as Twohundreds twelve plz provide me ans soon
How can I determine whether a machines byte order is big-endian or little-endian?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
Explain what is the difference between functions abs() and fabs()?
How variables are declared in c?