printf("%d",(printf("Hello")); What it returns?
Answers were Sorted based on User's Feedback
Answer / praneeth
It doesn't because in printf access specifier is Integer
but to display Hello we should use %s.
Is This Answer Correct ? | 1 Yes | 22 No |
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
void main() { int a=1; while(a++<=1) while(a++<=2); }
When should you use a type cast?
What is difference between array and pointer in c?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
what is the difference b/w NULL and null?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
Can we change the value of static variable in c?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What's wrong with "char *p; *p = malloc(10);"?
How do we declare variables in c?