Explain 'bit masking'?
No Answer is Posted For this Question
Be the First to Post Answer
What is include directive in c?
What is string concatenation in c?
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
what is pointer
Explain how does flowchart help in writing a program?
What is the main difference between calloc () and malloc ()?
Write the Program to reverse a string using pointers.
What language is c written?
What is getch () for?
#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 typeof return in c?