What is full form of PEPSI
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int i=10, j=2; int *ip= &i, *jp = &j; int k = *ip/*jp; printf(“%d”,k); }
void main() { if(~0 == (unsigned int)-1) printf(“You can answer this if you know how values are represented in memory”); }
You are given any character string. Find the number of sets of vowels that come in the order of aeiou in the given string. For eg., let the given string be DIPLOMATIC. The answer returned must be "The number of sets is 2" and "The sets are "IO and AI". Vowels that form a singleton set must be neglected. Try to post the program executable in gcc or g++ or in java.
main() { char name[10],s[12]; scanf(" \"%[^\"]\"",s); } How scanf will execute?
void main() { int i=i++,j=j++,k=k++; printf(“%d%d%d”,i,j,k); }
Program to find the largest sum of contiguous integers in the array. O(n)
1. const char *a; 2. char* const a; 3. char const *a; -Differentiate the above declarations.
C program to print magic square of order n where n > 3 and n is odd
main() { int x=5; clrscr(); for(;x==0;x--) { printf("x=%d\n”", x--); } } a. 4, 3, 2, 1, 0 b. 1, 2, 3, 4, 5 c. 0, 1, 2, 3, 4 d. none of the above
write a c program to print magic square of order n when n>3 and n is odd?
What is data _null_? ,Explain with code when u need to use it in data step programming ?
how to concatenate the two strings