Is main is user defined function?
No Answer is Posted For this Question
Be the First to Post Answer
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
? ???Mirror Mirror on the wall????????
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Explain what is the general form of a c program?
What is %d used for?
Diff between for loop and while loop?
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
What does the c in ctime mean?
Is c a great language, or what?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?