How to run c Program without using IDE of c.
means if program made in notepad.then how to compile by
command prompt.
Answer / rajesh
compile
gcc filename.c
its create exe file is a.out
run
./a.out
ll gie output
| Is This Answer Correct ? | 3 Yes | 0 No |
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
Output for following program using for loop only * * * * * * * * * * * * * * *
Is that possible to add pointers to each other?
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
How do you write a program which produces its own source code as output?
how to use showbits function?
Explain indirection?
What does %c do in c?
How can you increase the size of a statically allocated array?
What is array within structure?
how to set Nth bit of a variable?