What is a 'null pointer assignment' error?
No Answer is Posted For this Question
Be the First to Post Answer
How can I implement sets or arrays of bits?
what are two categories of clint-server application development ?
write a program in c language to print your bio-data on the screen by using functions.
How can I return multiple values from a function?
Tell me can the size of an array be declared at runtime?
#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 is structure padding & expalain wid example what is bit wise structure?
implement OR gate without using any bitwise operator.
write a program to display reverse of a number using for loop?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
How to swap 3 numbers without using 4th variable?
How many data structures are there in c?