can anyone please tell about the nested interrupts?
No Answer is Posted For this Question
Be the First to Post Answer
Can two or more operators such as and be combined in a single line of program code?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What are the types of pointers in c?
What does sizeof function do?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
what is link list?
Write the Program to reverse a string using pointers.
write a program for even numbers?
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
Write a program with dynamically allocation of variable.