main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
10 19706#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
4 20394#include
#include
#include
how to convert binary to decimal and decimal to binary in C lanaguage
BPO, Far East Promotions, IBM, RBS,
7 28501Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
TCS,
1 7246
What is pointer to pointer in c with example?
What is variable initialization and why is it important?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
i have a written test for microland please give me test pattern
Differentiate between null and void pointers.
What is the difference between union and anonymous union?
write a c program to find the sum of five entered numbers using an array named number
what is ur strangth & weekness
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
ATM machine and railway reservation class/object diagram
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Explain the difference between null pointer and void pointer.
write a progrmm in c language take user interface generate table using for loop?
Is int a keyword in c?