Explain how can you tell whether a program was compiled using c versus c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Explain a file operation in C with an example.
how to print this sereis 2 4 3 6 5..........?
How can I write a function analogous to scanf?
wht is the difference between KPO and BPO ?
2 Answers Accenture, BPO, HCK, HCL, Infosys,
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as ā****ā.
Write a program to reverse a given number in c language?
Write a program in c using only loops to print * * * * * *******
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What are c identifiers?
disadvantages of realloc ?
Write a program for finding factorial of a number.