char *p="name";
printf(p);
What does %d do?
Why is event driven programming or procedural programming, better within specific scenario?
can anyone suggest some site name..where i can get some good data structure puzzles???
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
what will be the output for the following main() { printf("hi" "hello"); }
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
What is wrong with this program statement? void = 10;
What is volatile, register definition in C
write a c program for swapping two strings using pointer
State the difference between x3 and x[3].