What is signed and unsigned?
No Answer is Posted For this Question
Be the First to Post Answer
What are global variables?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is the best way to comment out a section of code that contains comments?
Describe wild pointers in c?
What are the different types of constants?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
related proverb of "dont count your chicken before it hatches"
Can i use Two or More Main Funtion in any C program.?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
What is a protocol in c?
Where does the name "C" come from, anyway?
How will you declare an array of three function pointers where each function receives two ints and returns a float?