Differentiate between new and malloc(), delete and free() ?
No Answer is Posted For this Question
Be the First to Post Answer
c pgm count no of lines , blanks, tabs in a para(File concept)
inline function is there in c language?
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
what is c programming?
#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?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
how logic is used
Is file a keyword in c?
What is Your Name :)
In c programming language, how many parameters can be passed to a function ?
What is use of pointer?