What is a loop?
No Answer is Posted For this Question
Be the First to Post Answer
What's a good way to check for "close enough" floating-point equality?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the equivalent code of the following statement in WHILE LOOP format?
What will be the output of x++ + ++x?
What is sizeof array?
Which weighs more, a gram of feathers or a gram of gold?
Explain the use of 'auto' keyword
Explain the use of fflush() function?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
Describe advantages and disadvantages of the various stock sorting algorithms
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.