The C language terminator is
a.semicolon
b.colon
c.period
d.exclamation mark
Answers were Sorted based on User's Feedback
Answer / fazlur rahaman naik & praneeth
a is the answer.i.e semicolon.
| Is This Answer Correct ? | 20 Yes | 0 No |
Answer / manju
a.semicolon
every statement in a ptogram which is written in c
language can be end with a semicolon. othewise it'l show a
error
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / vivek kumar
Terminator in the 'C' language is
semicolon
| Is This Answer Correct ? | 5 Yes | 2 No |
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
What is putchar() function?
why r u join this company? give solid resons.
16 Answers IBM, Infosys, TCS,
What is a program flowchart?
What are local static variables?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
How #define works?
How can I run c program?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
Do you know pointer in c?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }