What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
No Answer is Posted For this Question
Be the First to Post Answer
write a progrmm in c language take user interface generate table using for loop?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
What are the different types of pointers used in c language?
how to get the starting address of file stored in harddisk through 'C'program.
What does the file stdio.h contain?
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
what is a function pointer and how all to declare ,define and implement it ???
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.