What is static function in c?
No Answer is Posted For this Question
Be the First to Post Answer
can we execute the program with the object file
what is an inline function?
what is the use of ~ in c lang?????
fn f(x) { if(x<=0) return; else f(x-1)+x; }
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); }
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Explain that why C is procedural?
How to add two numbers without using semicolon at runtime
Explain setjmp()?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What are void pointers in c?