What is the deal on sprintf_s return value?
No Answer is Posted For this Question
Be the First to Post Answer
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
code for concatination of 2 strings with out using library functions?
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
How do you prevent buffer overflows in C?
What is structure packing ?
writw a program to insert an element in the begning of a doubly linked list
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
What extern c means?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
Without Computer networks, Computers will be half the use. Comment.
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
Determine if a number is a power of 2 at O(1).