What are register variables? What are the advantage of using register variables?
No Answer is Posted For this Question
Be the First to Post Answer
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
How many header files are in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What are different types of operators?
how to find greatet of 10 numbers without using array?
what is an ERP?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
What is c language and why we use it?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is array within structure?
write a program fibonacci series and palindrome program in c
0 Answers Aditi Placement Service,
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }