c program to compute AREA under integral
No Answer is Posted For this Question
Be the First to Post Answer
write a program to interchange the value between two variable without using loop
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
C program to read the integer and calculate sum and average using single dimensional array
What is macro?
write a c program in such a way that if we enter the today date the output should be next day's date.
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
what is the different bitween abap and abap-hr?
Why can't I perform arithmetic on a void* pointer?
Write code for atoi(x) where x is hexadecimal string.
#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?
How to create struct variables?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question