Can a function argument have default value?
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
What are the advantages of using new operator as compared to the function malloc ()?
Why can't I perform arithmetic on a void* pointer?
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
What is function what are the types of function?
How can I call a function, given its name as a string?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
How can I send mail from within a c program?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
What is Heap?
Write a program to print ASCII code for a given digit.