Define C in your own Language.
No Answer is Posted For this Question
Be the First to Post Answer
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
What are the features of the c language?
What tq means in chat?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
How can I access a memory located at certain address?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is the symbol indicated the c-preprocessor?
What is the use of gets and puts?
How to define structures? ·
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
how can i sort numbers from ascending order and descending order using turbo c..