What is logical error?
No Answer is Posted For this Question
Be the First to Post Answer
program in c to print 1 to 100 without using loop
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
What is #define used for in c?
What is c language and why we use it?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
How can you tell whether a program was compiled using c versus c++?
Explain the difference between malloc() and calloc() function?
is forign key will be unique key any table or not?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
WHAT IS PRE POSSESSORS?
Describe newline escape sequence with a sample program?
What is meant by int fun const(int a, int b) { .... ... }