What is the difference between Printf(..) and sprint(...) ?
No Answer is Posted For this Question
Be the First to Post Answer
a simple c program using 'for' loop to display the output 5 4 3 2 1
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
Which node is more powerful and can handle local information processing or graphics processing?
what is diognisis?
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
write a c program to find biggest of 3 number without relational operator?
Are the outer parentheses in return statements really optional?
How the C program can be compiled?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.