Answer Posted / satish
#include<stdio.h>
main(){
printf("%cd",37);// ASCII value of % = 37
}
| Is This Answer Correct ? | 14 Yes | 9 No |
Post New Answer View All Answers
List some of the dynamic data structures in C?
What is keyword in c?
why we wont use '&' sing in aceesing the string using scanf
In c programming language, how many parameters can be passed to a function ?
Is there any data type in c with variable size?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
How do we declare variables in c?
How many types of sorting are there in c?
Are bit fields portable?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is an identifier?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is property type c?
How can a program be made to print the line number where an error occurs?