What is the scope of static variables?
Can a pointer point to null?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
How can I get back to the interactive keyboard if stdin is redirected?
Why c is called a mid level programming language?
Write a program to add a given duration with time(24hrs format)
All technical questions
Explain what happens if you free a pointer twice?
How can I call fortran?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
What is memory leak in c?
Write a pro-gramme to determine whether the number is even or odd?