Why is c called a mid-level programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the scope of an external variable in c?
how will you write a program on linked lists using JAVA programming???????????
Explain how can a program be made to print the name of a source file where an error occurs?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
What are integer variable, floating-point variable and character variable?
what is memory leak?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
How do you print only part of a string?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.