What's the best way of making my program efficient?
Explain what is dynamic data structure?
is assignment operator is arithmatic or not
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What are the characteristics of arrays in c?
What are the rules for the identifier?
Write code for finding depth of tree
Where are c variables stored in memory?
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
write a program to interchange the value between two variable without using loop
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain