Explain the Difference between the New and Malloc keyword.
No Answer is Posted For this Question
Be the First to Post Answer
What is a dynamic array in c?
How would you print out the data in a binary tree, level by level, starting at the top?
name the language for writing c compiler?
What is the difference between i++ and i+1 ?(in terms of memory)
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
how to write a data 10 in address location 0x2000
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
suppose there are five integers write a program to find larger among them without using if- else
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
what is the diference between pointer to the function and function to the pointer?
What is meant by int main ()?
What are the two types of structure?