provide an example of the Group by clause, when would you
use this clause
No Answer is Posted For this Question
Be the First to Post Answer
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
what is the diference between pointer to the function and function to the pointer?
List some of the dynamic data structures in C?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
Explain how can I convert a number to a string?
What is operator precedence?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
State two uses of pointers in C?
Define function pointers?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
What is the difference between ++a and a++?