What do header files do?
No Answer is Posted For this Question
Be the First to Post Answer
Explain 'bus error'?
Why do we use int main instead of void main in c?
What is string constants?
What is infinite loop?
write a program to generate address labels using structures?
Please list all the unary and binary operators in C.
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
What is a buffer in c?
Write a pro-gramme to determine whether the number is even or odd?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?