What is a sequential access file?
No Answer is Posted For this Question
Be the First to Post Answer
write a c programme for add of two numbers with out use of arthematic operators
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
List some of the dynamic data structures in C?
what is d pitfalls of registers variables
Write a program to check whether a number is prime or not using c?
What tq means in chat?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Write code for atoi(x) where x is hexadecimal string.