Explain what is the general form of a c program?
No Answer is Posted For this Question
Be the First to Post Answer
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
Write a Program to find whether the given number or string is palindrome.
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
What is structure data type in c?
what type of language is C?
How can I avoid the abort, retry, fail messages?
Dont ansi function prototypes render lint obsolete?
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
Why cann't whole array can be passed to function as value.
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string