Can the size of an array be declared at runtime?
No Answer is Posted For this Question
Be the First to Post Answer
What are directives in c?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
#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?
How does the assert() function work?
How can you determine the maximum value that a numeric variable can hold?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What is typedf?
What is indirection?
Does sprintf put null character?
how can i get output the following... 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1 and 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 plz plz...
Is null always equal to 0(zero)?
What is the Lvalue and Rvalue?