Why is it important to memset a variable, immediately after
allocating memory to it ?
No Answer is Posted For this Question
Be the First to Post Answer
What is the correct code to have following output in c using nested for loop?
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
What is static and volatile in c?
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
How can I handle floating-point exceptions gracefully?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
how will you write a program on linked lists using JAVA programming???????????
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Why ca not I do something like this?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
Why data types in all programming languages have some range? Why ritche have disigned first time likethat?Why not a single data type can support all other types?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .