What language is c written?
No Answer is Posted For this Question
Be the First to Post Answer
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What does %c do in c?
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
What are local and global variables?
write a program to print %d ?
What is the difference between memcpy and memmove?
how to create duplicate link list using C???
What is the difference between new and malloc functions?
What are local static variables?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
where can function pointers be used?
How will you allocate memory to double a pointer?