write a simple calculator c program to perform addition,
subtraction, mul and div.
No Answer is Posted For this Question
Be the First to Post Answer
Develop a routine to reflect an object about an arbitrarily selected plane
#include<stdio.h> main() { int a[2][2][2] = { {10,2,3,4}, {5,6,7,8} }; int *p,*q; p=&a[2][2][2]; *q=***a; printf("%d..%d",*p,*q); }
4. Main() { Int i=3,j=2,c=0,m; m=i&&j||c&I; printf(“%d%d%d%d”,I,j,c,m); }
main() { main(); }
main() { unsigned int i=65000; while(i++!=0); printf("%d",i); }
#include<stdio.h> main() { struct xx { int x; struct yy { char s; struct xx *p; }; struct yy *q; }; }
Is the following code legal? struct a { int x; struct a *b; }
create a login program that ask username and password. if you input username or password 3 times wrong, the program will terminate else the program will prompt a message "congratulations"
char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }
What is the output for the following program main() { int arr2D[3][3]; printf("%d\n", ((arr2D==* arr2D)&&(* arr2D == arr2D[0])) ); }
write a c program to Create a registration form application by taking the details like username, address, phone number, email along 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 5 users and display the details. In place of password display “****”. (Use Structures).
0 Answers CDAC, College School Exams Tests,
write the function. if all the character in string B appear in string A, return true, otherwise return false.