What is cohesion in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of i/o functions?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
Is there anything like an ifdef for typedefs?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
0 Answers Sikkim Manipal University,
What is huge pointer in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
Explain how do you view the path?
Explain how many levels deep can include files be nested?
What is union and structure in c?