write a program to find lcm and hcf of two numbers??
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
Explain how can I open a file so that other programs can update it at the same time?
What do you mean by a sequential access file?
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
what is difference between ANSI structure and C99 Structure?
What is a scope resolution operator in c?
What are enumerated types?
Explain what is the difference between functions getch() and getche()?
How do you write a program which produces its own source code as its output?
In which category does main function belong??
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }