What is the use of static variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between && and & in c?
What is dynamic dispatch in c++?
How to establish connection with oracle database software from c language?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Why doesnt that code work?
What is a structure in c language. how to initialise a structure in c?
what will be the output for the following main() { printf("hi" "hello"); }
What is the condition that is applied with ?: Operator?
#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?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
What are variables and it what way is it different from constants?
Explain what math functions are available for integers? For floating point?