Differentiate between calloc and malloc.
No Answer is Posted For this Question
Be the First to Post Answer
String concatenation
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
main() { int a; a=++100; printf("%d",a); getch(); }
Write a program to print all permutations of a given string.
What is volatile variable how do you declare it?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
What is diffrance between declaration and defination of a variable or function
how can write all 1to 100 prime numbers using for loop,if and break ?
Array is an lvalue or not?
How can I set an array's size at run time?