int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answers were Sorted based on User's Feedback
4. main() { int c=- -2; printf("c=%d",c); }
Is a pointer a kind of array?
Can you think of a way when a program crashed before reaching main? If yes how?
What are volatile variables?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
When should the register modifier be used? Does it really help?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
How to define structures? ·
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Why n++ execute faster than n+1 ?
What do you mean by Recursion Function?