What are the header files used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is an identifier?
what is data structure?
What is the difference between memcpy and memmove?
what is difference between declaring the pointer as int and char in c language?
Can we change the value of static variable in c?
Find string palindrome 10marks
5 Answers Honeywell, Infosys, Riktam, Roland,
Explain a pre-processor and its advantages.
How can you find the exact size of a data type in c?
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
Explain what will the preprocessor do for a program?
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