What is the difference between the local variable and global variable in c?
Do pointers take up memory?
What is the difference between new and malloc functions?
size maximum allocated by calloc()
#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 are the 5 types of organizational structures?
What is unary operator?
what is the difference between char * const and const char *?
How to draw the flowchart for structure programs?
nic scientist exam
what is a headerfile?and what will be a program without it explain nan example?
write a program to display reverse of a number using for loop?
write a C program to print the program itself ?!