What are the difference between a free-standing and a hosted environment?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between Printf(..) and sprint(...) ?
What is the difference between strcpy() and memcpy() function in c programming?
What is string length in c?
What is difference between stdio h and conio h?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Explain about the constants which help in debugging?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What is the general form of a C program?
how to set Nth bit of a variable?
Do you know the purpose of 'register' keyword?
how to find string length wihtout using c function?