What is a program?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between class and object in c?
What is the difference between array and pointer?
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
pierrot's divisor program using c or c++ code
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
explain what is an endless loop?
What is the right type to use for boolean values in c?
Is there a way to jump out of a function or functions?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
program to find the magic square
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What does void main () mean?