What is a struct c#?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
What extern c means?
What are local and global variables?
What is operator promotion?
wap to print "hello world" without using the main function.
What is keyword in c?
What is the default value of local and global variables in c?
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.
How do you print only part of a string?
What is a const pointer in c?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Explain main function in c?