How can I trap or ignore keyboard interrupts like control-c?
No Answer is Posted For this Question
Be the First to Post Answer
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
how to write a bubble sort program without using temporary variable?
How can you tell whether two strings are the same?
How can I find out the size of a file, prior to reading it in?
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
Explain what is the benefit of using const for declaring constants?
Write a program in c to print * * * * * *******
Is c is a procedural language?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
how will you write a program on linked lists using JAVA programming???????????
Can 'this' pointer by used in the constructor?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?