Explain with an example and how to develop the program
Latest Answer: Pseudo is not a programming language. It is your language. before writtinga program, we usually draw a blue print on the papar. likeif a > 0   then show a proper messageelse   get the data from user.like, and then we write this in C++ or Java ...
suppose i have given like integer 123.....then print like all the combinations 111,112,113,121......up to 333..
Latest Answer: /*to print possible patern using given no*/#include#includevoid main(){ int a[100],b[100],n,x=1,y,k,j,i,m,c; clrscr(); printf("enter no of nost"); scanf("%d",&n); m=n-1; printf("nenter ...
Latest Answer: freopen() :ensures that no other file descriptors are associated with the stream being open'd.strtok(): used to tokenize a given with the help of a delimiter.access(): int access(const char *pathname, int mode) checks for user permissions of the given ...
Latest Answer: This is a general problem of the keyboard buffer. When scanf("%d",&n); is used and when an input is entered, the newline character("n") along with the input is stored in buffer. This buffer gets clear as the user presses "Enter" ...
Latest Answer: #pragma once is a non-standard but widely supported preprocessor directive designed to cause the current source file to be included only once in a single compilation. Thus, #pragma once serves the same purpose as include guards(#ifndef, #endif) but ...
Latest Answer: this directive is used to instruct the compiler. Suppose you don't want something to compile that condition can be put under this directive, and compiler will show error if that thing meets in the code. ...
Latest Answer: Ya. You can include header file in another file.//In test.h#include//In test.c#include "test.h"int main(){printf("Hellon");}Here stdio.h header file is included in another header file test.hThe only thing to remember ...
main(){ if(fork()||fork()) return fork(); else return 0;}how many times fork() function is executed?
Latest Answer: fork f1 = 1 will return f3;fork f1 = 0, f2 = 1 return f3;f1 = 0, f2 = 0 return 0;in all 7 times; ...
What is source code of this tringle A A N I A N I R B A N I R B A N A N I R B A N P A A N I R B A N P A U L 2) A N I R B A N P A 3)
Latest Answer: I think if irrespective of the fact that it is overflow or underflow, we will get a segmentation fault ...
View page << Previous 5 6 7 8 [9] 10 11 12 13 14 Next >>

Go Top