What is %g in c?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the difference between = and == symbols in c programming?
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
Program to find largest of three numbers without using comparsion operator?
what are enumerations in C
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
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
How will you delete a node in DLL?
What is structure in c explain with example?
Compare array data type to pointer data type
How is null defined in c?