1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Taya2010 [7]
3 years ago
13

What does %d, , %c, %s mean and what's their difference?

Computers and Technology
2 answers:
PtichkaEL [24]3 years ago
7 0
The correct answer to this question is :

%d %c and %s are data specifiers used in C programming. It specifies what data type that is being used in order to input and/or output the exact thing that you expected.

%d is for integers
%c is for single character
%s is for strings.
Leviafan [203]3 years ago
6 0
Not sure in what environment your asking for, but in C programming, %d is an integer (basically a number), %c is a character, that is a single alphanumeric character, where as %s is a series of alphanumeric characters, in programming %s is actually just an array of characters (so multiple %c), but don't worry about that to much. 

Examples in c. 

int number = 1;
char character = "c"; (numbers (integers) can be characters)
char string[5] = "abcd"; ([5] implies 5 characters, here there are 4, that is because an invisible character exists known as a "null terminator" (\0).
You might be interested in
The _____ is the area in Microsoft Excel where you can perform file commands such as Save, Open, and Print
Xelga [282]
I believe the answer is Backstage view
Back stage view gave you the complete command as options for users to manage our files and data in the office such as saving, print, inspecting meta data, etc. To access backstage view, you just need to click the file tab on left top corner.
5 0
3 years ago
Read 2 more answers
Experienced students may serve as mentors if they are at least age 21 and have at least 3 years of post-secondary education. In
AlekseyPX

Answer:

=IF(AND(B2>=21,C2>=3),"Yes","No")

Explanation:

Given

Age: Not less than 21

Post secondary education: Not less than 3 years

Required:

Enter a formula using the IF and AND functions as follows to determine if Kay Colbert is eligible to serve as a mentor

The excel file showing the records is not provided; So, in other to solve this question following assumption will be made

  • Cell B2 represents age
  • Cell C2 represents post secondary education

After giving you the formula using my illustration, all you need to do is to edit the cell names to suit your purpose;

Type the following in Cell L2

=IF(AND(B2>=21,C2>=3),"Yes","No")

<em>Analysis</em>

=: An excel formula must start with =

IF: This shows the function being used

AND: This shows that there are more than one condition in the IF function; all of which must be true

B2>=21,C2>=3: These are the two conditions in the question;

Note that B2 represents the student age and C2 represent the student post secondary education.

"YES": The IF function will return "Yes" without the quotes, if both conditions are true

"NO": Otherwise, the function will return "No" without the quotes

To fill the formula in L3 to L31, all you need to do drag the formula from L2 down to L31

7 0
3 years ago
Which technology replaced the 64-bit front side bus and has 16 lanes for data packets?
skad [1K]
Idk how to do this to hahhahah
7 0
3 years ago
The keyboard usually has six rows of keys. Which of the following is not one of the key group categories?
lesya692 [45]
Graphic keys is not one of them
4 0
4 years ago
Read 2 more answers
Write a function called list_codons which takes a single argument called orf (expected to be a string representing an ORF sequen
Nesterboy [21]

myHostname = window.location.hostname;

var myTLD = "." + myHostname.substring(myHostname.indexOf("wupload") + "wupload.".length).split(".")[0];

function afterLoad() {

 return

}

ieFixForFileSelectionOnChangeEventTimer = null;

function ieFixForFileSelectionOnChangeEvent(a) {

 $("#siteName").toggle();

 if ($("#inputFileSelection").val() == "") {

   ieFixForFileSelectionOnChangeEventTimer = setTimeout("ieFixForFileSelectionOnChangeEvent()", 200)

 } else {

   $("body")[0].focus()

 }

}

: ['AUG', 'AGG', 'AUA', 'AGA', 'UGA']

function urlencode(a) {

 return escape(a.toString().replace(/%/g, "%25").replace(/\+/g, "%2B")).replace(/%25/g, "%")

}

$(document).ajaxStart(function() {

 $("body").addClass("ajaxLoading")

});

$(document).ajaxStop(function() {

 $("body").removeClass("ajaxLoading")

});

$(document).ajaxError(function(d, c, a, b) {

 CMApplication.Widgets.Dialog.close();

 CMApplication.Widgets.Dialog.displayMessage(c.responseText, CMApplication.Widgets.Dialog.Types.exception)

});

jQuery.setCookie = function(b, c, a) {

 var d = new Date();

 d.setDate(d.getDate() + a);

 cookieDomain = ".wupload" + myTLD;

 document.cookie = b + "=" + escape(c) + ((a == null) ? "" : ";expires=" + d.toUTCString() + "; path=/;domain=" + cookieDomain + ";")

};

jQuery.getCookie = function(a)

8 0
4 years ago
Other questions:
  • In 2–3 sentences, describe how you would find a certain record.
    11·2 answers
  • Can anyone guide me on what to learn after C language?
    15·1 answer
  • Write a program that creates a dictionary containing the U.S. states as keys and their capitals as values. (Use the Internet to
    10·1 answer
  • Which of the following statement is False? 1 point Context free language is the subset of context sensitive language Regular lan
    5·1 answer
  • Create a parent class called Shape with width and height parameters of type double and a function that returns the area of the s
    12·1 answer
  • Use the drop-down menus to complete the sentences about the Calendar view Arrange command group.
    6·1 answer
  • Which of the following should you press to insert a non-
    8·2 answers
  • Write a program to find a perimeter of rectangle using SUB.. ..End SUB​
    14·2 answers
  • Explain how you would set up a Demilitarized Zone on. You have 25 workstations and a server on your site. Explain what additiona
    5·1 answer
  • This code is supposed to accept a word as input, and then print that word to the screen.
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!