What does
do in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
Can we access the array using a pointer in c language?
Differentiate between null and void pointers.
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
code for selection sort?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
how many times of error occur in C
what is a non volatile key word in c language?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above