which operator is known as dummy operator in c?
Answer Posted / googly
unary +
| Is This Answer Correct ? | 39 Yes | 2 No |
Post New Answer View All Answers
What is masking?
Can you pass an entire structure to functions?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Write a program to implement queue.
Define Array of pointers.
What are the __date__ and __time__ preprocessor commands?
How macro execution is faster than function ?
What is static function in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
what value is returned to operating system after program execution?
Describe the modifier in c?
What is structure packing in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Write a program to swap two numbers without using a temporary variable?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if