is it possible to create your own header files?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
How can you find the day of the week given the date?
What is "Duff's Device"?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Can we use visual studio for c?
Program to find larger of the two numbers without using if-else,while,for,switch
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
is it possible to change the default calling convention in c ?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
What is the exact difference between '\0' and ""
what is the need for main function in c?