Which one would you prefer - a macro or a function?
No Answer is Posted For this Question
Be the First to Post Answer
What is wrong with this statement? Myname = 'robin';
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
What is double pointer in c?
What does node * mean?
write a program for the normal snake games find in most of the mobiles.
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
What is the purpose of & in scanf?
What is difference between structure and union in c?
Explain the use of 'auto' keyword
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference