How many header files are in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a programming in c language, 1 3 5 7 9 11
What is identifier in c?
Is stack a keyword in c?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
how to create duplicate link list using C???
how can write all 1to 100 prime numbers using for loop,if and break ?
What is the purpose of realloc()?
Can you explain the four storage classes in C?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (“%d\n”,j); }
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20