What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
2 9259Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
TCS,
2 13852what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
4 7371You 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 6998
What is cohesion in c?
What are pointers really good for, anyway?
What is the newline escape sequence?
how to create duplicate link list using C???
What are linker error?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Differentiate between Macro and ordinary definition.
Explain how can a program be made to print the name of a source file where an error occurs?
Define recursion in c.
Why does notstrcat(string, "!");Work?
What is the difference between printf and scanf )?
What are the types of bitwise operator?