Why is c known as a mother language?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by recursion?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Write a progarm to find the length of string using switch case?
what is ram?
Is fortran faster than c?
What are conditional operators in C?
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
What is meant by global static? why we have to use static variable instead of Global variable
WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
8 Answers Carphone Warehouse, IBM, SAS,
How can I recover the file name given an open stream?
out put of printf(ā%dā,printf(ram));