What does the error 'Null Pointer Assignment' mean and what causes this error?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
What is sizeof int in c?
prototype of sine function.
What is the equivalent code of the following statement in WHILE LOOP format?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
implement OR gate without using any bitwise operator.
What is wild pointer in c?
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Explain what is the difference between a free-standing and a hosted environment?
can u give me the good and very optimised code for a car racing game?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }