Do you know the purpose of 'register' keyword?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.

2 Answers   Microsoft,


How can I trap or ignore keyboard interrupts like control-c?

0 Answers  


wat is the difference between array and pointer?

4 Answers   Wipro,


main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?

10 Answers   Ramco,


Find greatest number out of 10 number without using loop.

5 Answers   TCS,






Compare interpreters and compilers.

0 Answers  


How can I write a function that takes a format string and a variable number of arguments?

0 Answers  


Why isnt there a numbered, multi-level break statement to break out

0 Answers  


What is s in c?

0 Answers  


What is the easiest sorting method to use?

0 Answers  


#define f(x) main() { printf("\n%d",f(2+2)); }

5 Answers  


Why array starts with index 0

2 Answers  


Categories