Read two numbers from keyboard and find maximum of them?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the most efficient way to count the number of bits which are set in an integer?
how can i get output like this? 1 2 3 4 5 6
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation
WHAT IS PRE POSSESSORS?
Explain what is the difference between text files and binary files?
Why static variable is used in c?
What is enumerated data type in c?
how to swap 4 number without using temporary number?
What do you mean by dynamic memory allocation in c? What functions are used?
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?