How do you generate random numbers 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?
What is pointers in c?
how can make variable not in registers
Does * p ++ increment p or what it points to?
what's the return value of malloc()
Can the “if” function be used in comparing strings?
to find the program of matrix multiplication using arrays
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Explain the bubble sort algorithm.
Distinguish between actual and formal arguments.
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Why is it that not all header files are declared in every C program?