how to write a c program to print list of fruits in
alpabetical order?
No Answer is Posted For this Question
Be the First to Post Answer
What is openmp in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is typedef example?
When the macros gets expanded?
Why does everyone say not to use gets?
What is floating point constants?
What is the difference between printf and scanf )?
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
What are function pointers? Provide an example.
write a program that print itself even if the source file is deleted?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }