How is a macro different from a function?
No Answer is Posted For this Question
Be the First to Post Answer
What is auto keyword in c?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Why & is used in scanf in c?
main() { printf("hello"); fork(); }
my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details
What is the output of printf("%d", printf("Hello"));?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
every function has return the value?
how to swap two nubers by using a function with pointers?
Give the rules for variable declaration?
how to copy a string without using c function