What is a lookup table in c?
No Answer is Posted For this Question
Be the First to Post Answer
#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?
Can 'this' pointer by used in the constructor?
program to print upper & lower triangle of a matrix
write a program in c language to print your bio-data on the screen by using functions.
Why is c not oop?
How can we see the Expanded source code and compiled code for our source program in C?
What is the difference between char array and char pointer?
Is file a keyword in c?
Why we use int main and void main?
what is the advantage of software development
Do you know the use of fflush() function?
write a program to find out number of on bits in a number?