what are the 10 different models of writing an addition
program in C language?
No Answer is Posted For this Question
Be the First to Post Answer
Why flag is used in c?
What is the difference between int and float?
compare array with pointer?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
When should we use pointers in a c program?
How can I change the size of the dynamically allocated array?
What are the types of type qualifiers in c?
What is the mean of this statement:: if(int i=0 * i=9)
how to find a 5th bit is set in c program
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
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(); }