What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
2 9533Is 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 14120what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
4 7662You 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 7195
Write a Program to accept different goods with the number, price and date of purchase and display them
What is the g value paradox?
Can you pass an entire structure to functions?
Why we use void main in c?
Give basis knowledge of web designing ...
How do I use void main?
State the difference between x3 and x[3].
What is an array in c?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is calloc()?
Explain how do you declare an array that will hold more than 64kb of data?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is NULL pointer?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
How do you print only part of a string?