What is header file in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
What is a nested loop?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Why is C called a middle-level language?
write a program to print calender using for loop.
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
why do we use pointer instead directly acessing the data?
Why does everyone say not to use gets?
What is the difference between functions getch() and getche()?